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

Chris Lattner lattner at cs.uiuc.edu
Sun Sep 3 11:44:27 PDT 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCTargetMachine.cpp updated: 1.101 -> 1.102
---
Log message:

Simplify target construction.


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

 PPCTargetMachine.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.101 llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.102
--- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.101	Mon Aug 28 21:30:59 2006
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp	Sun Sep  3 13:44:02 2006
@@ -85,7 +85,7 @@
 
 PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS,
                                    bool is64Bit)
-  : TargetMachine("PowerPC"), Subtarget(M, FS, is64Bit),
+  : Subtarget(M, FS, is64Bit),
     DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
     FrameInfo(*this, false), JITInfo(*this, is64Bit), TLInfo(*this),
     InstrItins(Subtarget.getInstrItineraryData()) {






More information about the llvm-commits mailing list