Fix use-before-def thinko
[oota-llvm.git] / 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;
   }