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/Alpha/AlphaTargetMachine.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/Alpha/AlphaTargetMachine.cpp')
| -rw-r--r-- | llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp index 2970f8201b2..f7fd8e0e166 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/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) |

