From 3a18a39587e830f3fb6fb0bdbbde12080ccb93ba Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Wed, 3 Aug 2005 22:33:21 +0000 Subject: [PATCH] Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I will too llvm-svn: 22634 --- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp index 458e20b61edb..0854f2ac6e62 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/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) {}