diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-02-17 06:13:43 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-02-17 06:13:43 +0000 |
commit | 688521ca6f936cb51549b0d505aa89746561263b (patch) | |
tree | b726e19fdb1a0d202a06760909e009a82e8cfece /lib/CodeGen/PHIElimination.cpp | |
parent | 214c920818eb4624651f9cd6f7b0e48e5b61e50d (diff) |
Return Changed from SplitPHIEdges rather than always returning true.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PHIElimination.cpp')
-rw-r--r-- | lib/CodeGen/PHIElimination.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp index f59e4f1aa3..169e226554 100644 --- a/lib/CodeGen/PHIElimination.cpp +++ b/lib/CodeGen/PHIElimination.cpp @@ -423,5 +423,5 @@ bool PHIElimination::SplitPHIEdges(MachineFunction &MF, } } } - return true; + return Changed; } |