forked from OSchip/llvm-project
fix a bug where llvm-as couldn't assemble the .ll file for 252.eon.
llvm-svn: 36739
This commit is contained in:
parent
beca065b1e
commit
cf40d5097b
|
@ -2574,7 +2574,7 @@ BBTerminatorInst : RET ResolvedVal { // Return with a result...
|
||||||
std::vector<const Type*> ParamTypes;
|
std::vector<const Type*> ParamTypes;
|
||||||
ParamAttrsVector Attrs;
|
ParamAttrsVector Attrs;
|
||||||
if ($8 != ParamAttr::None) {
|
if ($8 != ParamAttr::None) {
|
||||||
ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = 8;
|
ParamAttrsWithIndex PAWI; PAWI.index = 0; PAWI.attrs = $8;
|
||||||
Attrs.push_back(PAWI);
|
Attrs.push_back(PAWI);
|
||||||
}
|
}
|
||||||
ValueRefList::iterator I = $6->begin(), E = $6->end();
|
ValueRefList::iterator I = $6->begin(), E = $6->end();
|
||||||
|
|
Loading…
Reference in New Issue