forked from OSchip/llvm-project
Fix bug: Assembler/2003-05-15-SwitchBug.ll
llvm-svn: 6239
This commit is contained in:
parent
021249f3f3
commit
9f3648bf02
|
@ -1464,6 +1464,11 @@ BBTerminatorInst : RET ResolvedVal { // Return with a result...
|
|||
for (; I != E; ++I)
|
||||
S->dest_push_back(I->first, I->second);
|
||||
}
|
||||
| SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
|
||||
SwitchInst *S = new SwitchInst(getVal($2, $3),
|
||||
cast<BasicBlock>(getVal(Type::LabelTy, $6)));
|
||||
$$ = S;
|
||||
}
|
||||
| INVOKE TypesV ValueRef '(' ValueRefListE ')' TO ResolvedVal
|
||||
EXCEPT ResolvedVal {
|
||||
const PointerType *PFTy;
|
||||
|
|
Loading…
Reference in New Issue