From dc7c0b8c22fc6a20726c90529e95eeaed6b9f464 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22634 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Alpha/AlphaTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {}