diff options
Diffstat (limited to 'test/Transforms/LoopVectorize/unsized-pointee-crash.ll')
-rw-r--r-- | test/Transforms/LoopVectorize/unsized-pointee-crash.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LoopVectorize/unsized-pointee-crash.ll b/test/Transforms/LoopVectorize/unsized-pointee-crash.ll index 5cc9837..7763c9c 100644 --- a/test/Transforms/LoopVectorize/unsized-pointee-crash.ll +++ b/test/Transforms/LoopVectorize/unsized-pointee-crash.ll @@ -11,10 +11,10 @@ for.body: %b.05 = phi i32 (...)* [ undef, %entry ], [ %1, %for.body ] %a.04 = phi i32 [ 0, %entry ], [ %inc, %for.body ] %0 = bitcast i32 (...)* %b.05 to i8* - %add.ptr = getelementptr i8* %0, i64 1 + %add.ptr = getelementptr i8, i8* %0, i64 1 %1 = bitcast i8* %add.ptr to i32 (...)* ; CHECK: %[[cst:.*]] = bitcast i32 (...)* {{.*}} to i8* -; CHECK-NEXT: %[[gep:.*]] = getelementptr i8* %[[cst]], i64 1 +; CHECK-NEXT: %[[gep:.*]] = getelementptr i8, i8* %[[cst]], i64 1 %inc = add nsw i32 %a.04, 1 %exitcond = icmp eq i32 %a.04, 63 br i1 %exitcond, label %for.end, label %for.body |