summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha
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/Alpha
parenta831a6c1c5d071fadf348473ca12254b88b18605 (diff)
downloadllvm-d988b32abad0634df07c18629e899f256935fde7.tar.gz
llvm-d988b32abad0634df07c18629e899f256935fde7.tar.bz2
llvm-d988b32abad0634df07c18629e899f256935fde7.tar.xz
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/Alpha')
-rw-r--r--lib/Target/Alpha/AlphaTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp
index 2970f8201b..f7fd8e0e16 100644
--- a/lib/Target/Alpha/AlphaTargetMachine.cpp
+++ b/lib/Target/Alpha/AlphaTargetMachine.cpp
@@ -55,7 +55,7 @@ unsigned AlphaTargetMachine::getJITMatchQuality() {
AlphaTargetMachine::AlphaTargetMachine(const Module &M, const std::string &FS)
: TargetMachine("alpha"),
- DataLayout("alpha", true),
+ DataLayout(std::string("alpha"), std::string("e")),
FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
JITInfo(*this),
Subtarget(M, FS)