[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp PPCTargetMachine.h

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



Changes in directory llvm/lib/Target/PowerPC:

PPCTargetMachine.cpp updated: 1.118 -> 1.119
PPCTargetMachine.h updated: 1.30 -> 1.31
---
Log message:

name change requested by review of previous patch


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

 PPCTargetMachine.cpp |    2 +-
 PPCTargetMachine.h   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.118 llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.119
--- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.118	Tue May 22 12:14:46 2007
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp	Tue May 22 13:31:04 2007
@@ -98,7 +98,7 @@
 
 /// Override this for PowerPC.  Tail merging happily breaks up instruction issue
 /// groups, which typically degrades performance.
-const bool PPCTargetMachine::DoTailMergeDefault() const { return false; }
+const bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; }
 
 PPC32TargetMachine::PPC32TargetMachine(const Module &M, const std::string &FS) 
   : PPCTargetMachine(M, FS, false) {


Index: llvm/lib/Target/PowerPC/PPCTargetMachine.h
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.30 llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.31
--- llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.30	Tue May 22 12:14:46 2007
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.h	Tue May 22 13:31:04 2007
@@ -73,7 +73,7 @@
                               MachineCodeEmitter &MCE);
   virtual bool addSimpleCodeEmitter(FunctionPassManager &PM, bool Fast,
                                     MachineCodeEmitter &MCE);
-  virtual const bool DoTailMergeDefault() const;
+  virtual const bool getEnableTailMergeDefault() const;
 };
 
 /// PPC32TargetMachine - PowerPC 32-bit target machine.






More information about the llvm-commits mailing list