Fix a copy/paste error in the IR Linker, casting an ArrayType instead of a VectorType.

llvm-svn: 172054
This commit is contained in:
Joey Gouly 2013-01-10 10:49:36 +00:00
parent c38f11de40
commit 5fad3e9ad6
3 changed files with 10 additions and 1 deletions

View File

@ -180,7 +180,7 @@ bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
return false;
} else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
if (DVTy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
return false;
}

View File

@ -13,6 +13,10 @@
; The uses of intlist in the other file should be remapped.
; CHECK-NOT: {{%intlist.[0-9]}}
; CHECK: %VecSize = type { <5 x i32> }
; CHECK: %VecSize.{{[0-9]}} = type { <10 x i32> }
%VecSize = type { <5 x i32> }
%Struct1 = type opaque
@S1GV = external global %Struct1*
@ -93,3 +97,5 @@ define internal void @Testintern() {
define void @testIntern() {
ret void
}
declare void @VecSizeCrash(%VecSize)

View File

@ -8,6 +8,8 @@
%Ty1 = type { %Ty2* }
%Ty2 = type opaque
%VecSize = type { <10 x i32> }
@GVTy1 = global %Ty1* null
@GVTy2 = external global %Ty2*
@ -53,3 +55,4 @@ define internal void @testIntern() {
ret void
}
declare void @VecSizeCrash1(%VecSize)