aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/IA64/IA64TargetMachine.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2006-05-20 00:24:56 +0000
committerOwen Anderson <resistor@mac.com>2006-05-20 00:24:56 +0000
commitd988b32abad0634df07c18629e899f256935fde7 (patch)
treeeb2a0c7e6ea1e92e113c361ae2f760fabe02bf1c /lib/Target/IA64/IA64TargetMachine.cpp
parenta831a6c1c5d071fadf348473ca12254b88b18605 (diff)
Make all of the TargetMachine subclasses use the new string TargetData methods.
This is part of the on-going work on PR 761. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/IA64/IA64TargetMachine.cpp')
-rw-r--r--lib/Target/IA64/IA64TargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/IA64/IA64TargetMachine.cpp b/lib/Target/IA64/IA64TargetMachine.cpp
index 8e31a3810f..f51da17564 100644
--- a/lib/Target/IA64/IA64TargetMachine.cpp
+++ b/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
}