Fix use-before-def thinko
authorBrian Gaeke <gaeke@uiuc.edu>
Fri, 2 Jul 2004 07:01:31 +0000 (07:01 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Fri, 2 Jul 2004 07:01:31 +0000 (07:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14570 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetData.cpp

index 59ef5accd8d96a9dcfb82f6f978c39d7cff9d487..a6379afee475ce1052dc7783c29355a3208733c1 100644 (file)
@@ -169,8 +169,8 @@ static inline void getTypeInfo(const Type *Ty, const TargetData *TD,
     return;
   case Type::ArrayTyID: {
     const ArrayType *ATy = cast<ArrayType>(Ty);
-    unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment;
     getTypeInfo(ATy->getElementType(), TD, Size, Alignment);
+    unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment;
     Size = AlignedSize*ATy->getNumElements();
     return;
   }