[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Jul 21 12:17:29 PDT 2005
Changes in directory llvm/lib/Target/PowerPC:
PowerPCTargetMachine.cpp updated: 1.54 -> 1.55
---
Log message:
revert to using 4-byte alignment for doubles, as specified by the ABI
---
Diffs of the changes: (+1 -1)
PowerPCTargetMachine.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.54 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.55
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.54 Wed Jul 20 17:42:00 2005
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp Thu Jul 21 14:17:18 2005
@@ -177,7 +177,7 @@
///
PPC64TargetMachine::PPC64TargetMachine(const Module &M, IntrinsicLowering *IL)
: PowerPCTargetMachine(PPC64ID, IL,
- TargetData(PPC64ID,false,8,4,8,4,4,4,2,1,1),
+ TargetData(PPC64ID,false,8,4,4,4,4,4,2,1,1),
PowerPCFrameInfo(*this, true)) {}
unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) {
More information about the llvm-commits
mailing list