mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Fix bug: test/Regression/CBackend/2002-05-21-MissingReturn.ll
llvm-svn: 2690
This commit is contained in:
parent
bbfc502d75
commit
b82857d705
@ -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()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user