[llvm-commits] CVS: llvm/lib/CodeGen/LLVMTargetMachine.cpp

Dale Johannesen dalej at apple.com
Tue May 22 11:31:31 PDT 2007



Changes in directory llvm/lib/CodeGen:

LLVMTargetMachine.cpp updated: 1.13 -> 1.14
---
Log message:

name change requested by review of previous patch


---
Diffs of the changes:  (+2 -2)

 LLVMTargetMachine.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/LLVMTargetMachine.cpp
diff -u llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.13 llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.14
--- llvm/lib/CodeGen/LLVMTargetMachine.cpp:1.13	Tue May 22 12:14:46 2007
+++ llvm/lib/CodeGen/LLVMTargetMachine.cpp	Tue May 22 13:31:04 2007
@@ -78,7 +78,7 @@
   
   // 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 @@
   
   // 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));






More information about the llvm-commits mailing list