commit | 688521ca6f936cb51549b0d505aa89746561263b | [log] [tgz] |
---|---|---|
author | Cameron Zwarich <zwarich@apple.com> | Thu Feb 17 06:13:43 2011 +0000 |
committer | Cameron Zwarich <zwarich@apple.com> | Thu Feb 17 06:13:43 2011 +0000 |
tree | b726e19fdb1a0d202a06760909e009a82e8cfece | |
parent | 214c920818eb4624651f9cd6f7b0e48e5b61e50d [diff] [blame] |
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
diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp index f59e4f1..169e226 100644 --- a/lib/CodeGen/PHIElimination.cpp +++ b/lib/CodeGen/PHIElimination.cpp
@@ -423,5 +423,5 @@ } } } - return true; + return Changed; }