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 | d988b32abad0634df07c18629e899f256935fde7 (patch) | |
tree | eb2a0c7e6ea1e92e113c361ae2f760fabe02bf1c /lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | a831a6c1c5d071fadf348473ca12254b88b18605 (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/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaTargetMachine.cpp | 2 |
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) |