[llvm-commits] [llvm] r125726 - /llvm/trunk/lib/CodeGen/PHIElimination.cpp

Cameron Zwarich zwarich at apple.com
Wed Feb 16 22:13:44 PST 2011


Author: zwarich
Date: Thu Feb 17 00:13:43 2011
New Revision: 125726

URL: http://llvm.org/viewvc/llvm-project?rev=125726&view=rev
Log:
Return Changed from SplitPHIEdges rather than always returning true.

Modified:
    llvm/trunk/lib/CodeGen/PHIElimination.cpp

Modified: llvm/trunk/lib/CodeGen/PHIElimination.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PHIElimination.cpp?rev=125726&r1=125725&r2=125726&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PHIElimination.cpp (original)
+++ llvm/trunk/lib/CodeGen/PHIElimination.cpp Thu Feb 17 00:13:43 2011
@@ -423,5 +423,5 @@
       }
     }
   }
-  return true;
+  return Changed;
 }





More information about the llvm-commits mailing list