forked from OSchip/llvm-project
Fix bug I introduced with one of my previous changes.
Thanks fly out to Nick for noticing it! :) llvm-svn: 3691
This commit is contained in:
parent
b5ac195828
commit
674c9ff585
|
@ -62,7 +62,7 @@ bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
|
||||||
NewRetBlock->getInstList().push_back(new ReturnInst(PN));
|
NewRetBlock->getInstList().push_back(new ReturnInst(PN));
|
||||||
} else {
|
} else {
|
||||||
// If it returns void, just add a return void instruction to the block
|
// If it returns void, just add a return void instruction to the block
|
||||||
new ReturnInst(0, NewRetBlock->end());
|
NewRetBlock->getInstList().push_back(new ReturnInst());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Loop over all of the blocks, replacing the return instruction with an
|
// Loop over all of the blocks, replacing the return instruction with an
|
||||||
|
|
Loading…
Reference in New Issue