From: Eli Friedman Date: Sun, 22 Feb 2009 03:23:43 +0000 (+0000) Subject: Last part of PR3254: use the same alignment computation in Sema and X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c2f06b373e6209447baf1fd5a86dd6602c573a8;p=clang Last part of PR3254: use the same alignment computation in Sema and CodeGen. I'm not sure whether this actually makes any visible difference, but it's better to be consistent anyway. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp index ea69a66b05..0ca2ad351c 100644 --- a/lib/CodeGen/CGDecl.cpp +++ b/lib/CodeGen/CGDecl.cpp @@ -172,10 +172,7 @@ void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) { const llvm::Type *LTy = ConvertType(Ty); llvm::AllocaInst *Alloc = CreateTempAlloca(LTy, CGM.getMangledName(&D)); - unsigned align = getContext().getTypeAlign(Ty); - if (const AlignedAttr* AA = D.getAttr()) - align = std::max(align, AA->getAlignment()); - Alloc->setAlignment(align >> 3); + Alloc->setAlignment(getContext().getDeclAlignInBytes(&D)); DeclPtr = Alloc; } else { // Targets that don't support recursion emit locals as globals.