From: Andrew Lenharth Date: Wed, 3 Aug 2005 22:33:21 +0000 (+0000) Subject: Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I will too X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dc7c0b8c22fc6a20726c90529e95eeaed6b9f464;p=oota-llvm.git Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I will too git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22634 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp index 458e20b61ed..0854f2ac6e6 100644 --- a/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -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) {}