[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / ARM / pr25838.ll
blobf3bb98f4260c273bd870212ca84c17a2f805ad86
1 ; RUN: llc -verify-machineinstrs < %s
2 ; PR25838
4 target triple = "armv7--linux-android"
6 %0 = type { i32, i32 }
8 define i32 @foo(%0* readonly) {
9   br i1 undef, label %12, label %2
11 ; <label>:2
12   %3 = trunc i64 undef to i32
13   %4 = icmp eq i32 undef, 0
14   br i1 %4, label %5, label %9
16 ; <label>:5
17   %6 = icmp slt i32 %3, 0
18   %7 = sub nsw i32 0, %3
19   %8 = select i1 %6, i32 %7, i32 %3
20   br label %12
22 ; <label>:9
23   br i1 undef, label %12, label %10
25 ; <label>:10
26   %11 = tail call i32 @bar(i32 undef)
27   unreachable
29 ; <label>:12
30   %13 = phi i32 [ %8, %5 ], [ 0, %1 ], [ undef, %9 ]
31   ret i32 %13
34 declare i32 @bar(i32)