Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I will too
authorAndrew Lenharth <andrewl@lenharth.org>
Wed, 3 Aug 2005 22:33:21 +0000 (22:33 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Wed, 3 Aug 2005 22:33:21 +0000 (22:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22634 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Alpha/AlphaTargetMachine.cpp

index 458e20b61edb028de184629c72a2da8e0e4d2b6e..0854f2ac6e62122b35c8011dfb4c7ce4c4c53836 100644 (file)
@@ -60,7 +60,7 @@ unsigned AlphaTargetMachine::getJITMatchQuality() {
 
 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)
 {}