[llvm-commits] [llvm] r119717 - /llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Dan Gohman gohman at apple.com
Thu Nov 18 10:48:28 PST 2010


Author: djg
Date: Thu Nov 18 12:48:28 2010
New Revision: 119717

URL: http://llvm.org/viewvc/llvm-project?rev=119717&view=rev
Log:
Oops, missed this file when remaing ExpandPseudos to ExpandISelPseudos.

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

Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=119717&r1=119716&r2=119717&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Thu Nov 18 12:48:28 2010
@@ -345,8 +345,8 @@
   // Print the instruction selected machine code...
   printAndVerify(PM, "After Instruction Selection");
 
-  // Expand pseudo-instructions emitted by isel.
-  PM.add(createExpandPseudosPass());
+  // Expand pseudo-instructions emitted by ISel.
+  PM.add(createExpandISelPseudosPass());
 
   // Optimize PHIs before DCE: removing dead PHI cycles may make more
   // instructions dead.





More information about the llvm-commits mailing list