diff options
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index e6e912199f..0abbe72e9b 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -345,8 +345,8 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, // 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. |