diff options
author | Dale Johannesen <dalej@apple.com> | 2007-05-22 18:31:04 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-05-22 18:31:04 +0000 |
commit | e6e435498c0e35d98644f868886d39c4665bb83a (patch) | |
tree | 1078670b44d7c50a9b80d15cb53578880c1cf55d /lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 2b77d3b09138cb1081f003042be55503d243d323 (diff) |
name change requested by review of previous patch
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37289 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 41f7e199a0..3371b7948b 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -78,7 +78,7 @@ LLVMTargetMachine::addPassesToEmitFile(FunctionPassManager &PM, // Branch folding must be run after regalloc and prolog/epilog insertion. if (!Fast) - PM.add(createBranchFoldingPass(DoTailMergeDefault())); + PM.add(createBranchFoldingPass(getEnableTailMergeDefault())); // Fold redundant debug labels. PM.add(createDebugLabelFoldingPass()); @@ -181,7 +181,7 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM, // Branch folding must be run after regalloc and prolog/epilog insertion. if (!Fast) - PM.add(createBranchFoldingPass(DoTailMergeDefault())); + PM.add(createBranchFoldingPass(getEnableTailMergeDefault())); if (addPreEmitPass(PM, Fast) && PrintMachineCode) PM.add(createMachineFunctionPrinterPass(cerr)); |