diff options
author | Owen Anderson <resistor@mac.com> | 2006-05-20 23:28:54 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2006-05-20 23:28:54 +0000 |
commit | bcd8a8264e35e147e23c219f0435c9277e24ec66 (patch) | |
tree | 822a3a9a76b86719b2b5fbb13a4d86718774d679 /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | 01859e88539f73a03459e420eb619ba76468cbc9 (diff) |
Make TargetData strings less redundant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 0ac093ceb5..82ea5c9742 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -59,7 +59,7 @@ unsigned PPCTargetMachine::getModuleMatchQuality(const Module &M) { PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS) : TargetMachine("PowerPC"), - DataLayout(std::string("PowerPC"), std::string("E-p:32:32-d:64:32-l:64:32")), + DataLayout(std::string("PowerPC"), std::string("E-p:32:32-d:32-l:32")), Subtarget(M, FS), FrameInfo(*this, false), JITInfo(*this), TLInfo(*this), InstrItins(Subtarget.getInstrItineraryData()) { if (TargetDefault == PPCTarget) { |