summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-11-18 18:48:28 +0000
committerDan Gohman <gohman@apple.com>2010-11-18 18:48:28 +0000
commitbd77d399c4cdc2440abde96b2861b149fae4f33e (patch)
tree0eb60a9ddfb909689eb31f72c9f4022d9e3ac94b /lib/CodeGen/LLVMTargetMachine.cpp
parent8ec9d62380f7139c7c85bae9609e8e93d2799500 (diff)
downloadllvm-bd77d399c4cdc2440abde96b2861b149fae4f33e.tar.gz
llvm-bd77d399c4cdc2440abde96b2861b149fae4f33e.tar.bz2
llvm-bd77d399c4cdc2440abde96b2861b149fae4f33e.tar.xz
Oops, missed this file when remaing ExpandPseudos to ExpandISelPseudos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r--lib/CodeGen/LLVMTargetMachine.cpp4
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.