[llvm-commits] CVS: llvm/lib/Target/IA64/IA64TargetMachine.cpp

Owen Anderson resistor at mac.com
Fri May 19 17:25:13 PDT 2006



Changes in directory llvm/lib/Target/IA64:

IA64TargetMachine.cpp updated: 1.15 -> 1.16
---
Log message:

Make all of the TargetMachine subclasses use the new string TargetData methods.

This is part of the on-going work on PR 761: http://llvm.cs.uiuc.edu/PR761 .


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

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


Index: llvm/lib/Target/IA64/IA64TargetMachine.cpp
diff -u llvm/lib/Target/IA64/IA64TargetMachine.cpp:1.15 llvm/lib/Target/IA64/IA64TargetMachine.cpp:1.16
--- llvm/lib/Target/IA64/IA64TargetMachine.cpp:1.15	Tue May  2 20:29:57 2006
+++ llvm/lib/Target/IA64/IA64TargetMachine.cpp	Fri May 19 19:24:56 2006
@@ -76,7 +76,7 @@
 /// IA64TargetMachine ctor - Create an LP64 architecture model
 ///
 IA64TargetMachine::IA64TargetMachine(const Module &M, const std::string &FS)
-  : TargetMachine("IA64"), DataLayout("IA64", true),
+  : TargetMachine("IA64"), DataLayout(std::string("IA64"), std::string("e")),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
     TLInfo(*this) { // FIXME? check this stuff
 }






More information about the llvm-commits mailing list