[llvm-commits] [llvm] r122197 - /llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp

Cameron Zwarich zwarich at apple.com
Sun Dec 19 13:32:29 PST 2010


Author: zwarich
Date: Sun Dec 19 15:32:29 2010
New Revision: 122197

URL: http://llvm.org/viewvc/llvm-project?rev=122197&view=rev
Log:
StrongPHIElimination will never run before TwoAddressInstructionPass.

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

Modified: llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp?rev=122197&r1=122196&r2=122197&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp (original)
+++ llvm/trunk/lib/CodeGen/TwoAddressInstructionPass.cpp Sun Dec 19 15:32:29 2010
@@ -148,7 +148,6 @@
       AU.addPreserved<LiveVariables>();
       AU.addPreservedID(MachineLoopInfoID);
       AU.addPreservedID(MachineDominatorsID);
-      AU.addPreservedID(StrongPHIEliminationID);
       AU.addPreservedID(PHIEliminationID);
       MachineFunctionPass::getAnalysisUsage(AU);
     }





More information about the llvm-commits mailing list