Return Changed from SplitPHIEdges rather than always returning true.

llvm-svn: 125726
This commit is contained in:
Cameron Zwarich 2011-02-17 06:13:43 +00:00
parent 5850225f52
commit 0b0cc4d75e
1 changed files with 1 additions and 1 deletions

View File

@ -423,5 +423,5 @@ bool PHIElimination::SplitPHIEdges(MachineFunction &MF,
}
}
}
return true;
return Changed;
}