From 97e070ed6866b2dfb65bdce84fa0af75cf5b631c Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Fri, 27 Feb 2009 04:11:37 +0000 Subject: [PATCH] Minor cleanup: use getDeclAlignInBytes helper. llvm-svn: 65611 --- clang/lib/CodeGen/CodeGenModule.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 75a8302792ae..6ebe12706bd3 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -713,17 +713,7 @@ void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { GV->setInitializer(Init); GV->setConstant(D->getType().isConstant(Context)); - - // FIXME: This is silly; getTypeAlign should just work for incomplete arrays - unsigned Align; - if (const IncompleteArrayType* IAT = - Context.getAsIncompleteArrayType(D->getType())) - Align = Context.getTypeAlign(IAT->getElementType()); - else - Align = Context.getTypeAlign(D->getType()); - if (const AlignedAttr* AA = D->getAttr()) - Align = std::max(Align, AA->getAlignment()); - GV->setAlignment(Align / 8); + GV->setAlignment(getContext().getDeclAlignInBytes(D)); if (const VisibilityAttr *attr = D->getAttr()) setGlobalVisibility(GV, attr->getVisibility()); -- GitLab