diff options
author | Owen Anderson <resistor@mac.com> | 2006-05-20 00:24:56 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2006-05-20 00:24:56 +0000 |
commit | 88812b5c0a1006393a0d9e060408206926d091fd (patch) | |
tree | ab480afcbd5e6918105db2916207e4db35cf5f12 /llvm/lib/Target/IA64/IA64TargetMachine.cpp | |
parent | c4e9aff50f5d941d954694e4b5d59ddd354e5aec (diff) | |
download | bcm5719-llvm-88812b5c0a1006393a0d9e060408206926d091fd.tar.gz bcm5719-llvm-88812b5c0a1006393a0d9e060408206926d091fd.zip |
Make all of the TargetMachine subclasses use the new string TargetData methods.
This is part of the on-going work on PR 761.
llvm-svn: 28414
Diffstat (limited to 'llvm/lib/Target/IA64/IA64TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/IA64/IA64TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/IA64/IA64TargetMachine.cpp b/llvm/lib/Target/IA64/IA64TargetMachine.cpp index 8e31a3810fa..f51da17564c 100644 --- a/llvm/lib/Target/IA64/IA64TargetMachine.cpp +++ b/llvm/lib/Target/IA64/IA64TargetMachine.cpp @@ -76,7 +76,7 @@ unsigned IA64TargetMachine::getModuleMatchQuality(const Module &M) { /// 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 } |