diff --git a/llvm/test/Transforms/LoopVectorize/cast-induction.ll b/llvm/test/Transforms/LoopVectorize/cast-induction.ll index 9c2b131c942323..9e7fd7f6f93286 100644 --- a/llvm/test/Transforms/LoopVectorize/cast-induction.ll +++ b/llvm/test/Transforms/LoopVectorize/cast-induction.ll @@ -7,23 +7,25 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3 @a = common global [2048 x i32] zeroinitializer, align 16 ;CHECK-LABEL: @example12( -;CHECK: %vec.ind1 = phi <4 x i32> -;CHECK: store <4 x i32> -;CHECK: ret void -define void @example12() nounwind uwtable ssp { - br label %1 +; CHECK-LABEL: vector.body: +; CHECK: [[VEC_IND:%.+]] = phi <4 x i32> +; CHECK: store <4 x i32> [[VEC_IND]] +; CHECK: ret void +define void @example12() { +entry: + br label %loop -;