[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Jun 10 01:25:02 PDT 2004


Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.7 -> 1.8

---
Log message:

Fix the fixed stack offset, patch contributed by Vladimir Prus



---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.7 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.8
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.7	Sat Feb 28 13:53:18 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Thu Jun 10 01:19:25 2004
@@ -32,7 +32,7 @@
 PowerPCTargetMachine::PowerPCTargetMachine(const Module &M,
                                            IntrinsicLowering *IL)
   : TargetMachine("PowerPC", IL, true, 4, 4, 4, 4, 4),
-    FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4), JITInfo(*this) {
+    FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4), JITInfo(*this) {
 }
 
 /// addPassesToEmitAssembly - Add passes to the specified pass manager





More information about the llvm-commits mailing list