Fix bug: test/Regression/CBackend/2002-05-21-MissingReturn.ll

llvm-svn: 2690
This commit is contained in:
Chris Lattner 2002-05-21 18:05:19 +00:00
parent bbfc502d75
commit b82857d705

View File

@ -567,8 +567,10 @@ void CWriter::printFunction(Function *F) {
void CWriter::visitReturnInst(ReturnInst *I) {
// Don't output a void return if this is the last basic block in the function
if (I->getNumOperands() == 0 &&
*(I->getParent()->getParent()->end()-1) == I->getParent())
*(I->getParent()->getParent()->end()-1) == I->getParent() &&
!I->getParent()->size() == 1) {
return;
}
Out << " return";
if (I->getNumOperands()) {