[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Wed Aug 3 15:33:32 PDT 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaTargetMachine.cpp updated: 1.10 -> 1.11
---
Log message:

Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I will too

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

 AlphaTargetMachine.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.10 llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.11
--- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.10	Fri Jul 22 16:00:30 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.cpp	Wed Aug  3 17:33:21 2005
@@ -60,7 +60,7 @@
 
 AlphaTargetMachine::AlphaTargetMachine( const Module &M, IntrinsicLowering *IL)
   : TargetMachine("alpha", IL, true),
-    FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), //TODO: check these
+    FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
     JITInfo(*this)
 {}
 






More information about the llvm-commits mailing list