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

llvm-svn: 22634
This commit is contained in:
Andrew Lenharth 2005-08-03 22:33:21 +00:00
parent 430d0022df
commit 3a18a39587
1 changed files with 1 additions and 1 deletions

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