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
This commit is contained in:
Andrew Lenharth 2005-08-03 22:33:21 +00:00
parent ec3fb63af2
commit dc7c0b8c22

View 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)
{}