diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-11-26 21:38:41 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-11-26 21:38:41 +0000 |
commit | 2d521e51acd5f1a0100cbbe4c611a35c978c2456 (patch) | |
tree | 908a3c7b9f946dd6283c97f4c03cb644c4cd6502 /lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 3c47f2de906ce5c83d090f05a16edc06c3ee87ab (diff) |
Rename new TailDuplicationPass to avoid name conflict with the old one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89968 91177308-0d34-0410-b5e6-96231b3b80d8
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 9164f8278a..242cba5b64 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -348,8 +348,8 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, // Tail duplication. if (OptLevel != CodeGenOpt::None && !DisableTailDuplicate) { - PM.add(createTailDuplicationPass()); - printAndVerify(PM, "After TailDuplication"); + PM.add(createTailDuplicatePass()); + printAndVerify(PM, "After TailDuplicate"); } PM.add(createGCMachineCodeAnalysisPass()); |