[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / LoopVectorize / unsized-pointee-crash.ll
blob065d8e6e4780446a61247806d5a9b9e91962f1c5
1 ; RUN: opt -S -loop-vectorize < %s | FileCheck %s
2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 ; CHECK-LABEL: @fn1
5 define void @fn1() {
6 entry:
7   br label %for.body
9 for.body:
10   %b.05 = phi i32 (...)* [ undef, %entry ], [ %1, %for.body ]
11   %a.04 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
12   %0 = bitcast i32 (...)* %b.05 to i8*
13   %add.ptr = getelementptr i8, i8* %0, i64 1
14   %1 = bitcast i8* %add.ptr to i32 (...)*
15 ; CHECK:      %[[cst:.*]] = bitcast i32 (...)* {{.*}} to i8*
16 ; CHECK-NEXT: %[[gep:.*]] = getelementptr i8, i8* %[[cst]], i64 1
17   %inc = add nsw i32 %a.04, 1
18   %exitcond = icmp eq i32 %a.04, 63
19   br i1 %exitcond, label %for.end, label %for.body
21 for.end:
22   ret void