Revert 374373: [Codegen] Alter the default promotion for saturating adds and subs
[llvm-core.git] / test / CodeGen / AArch64 / optimize-cond-branch.ll
blobab4ad5e2ce93daeab0f9e1a8dab952832964483e
1 ; RUN: llc -verify-machineinstrs -o - %s | FileCheck %s
2 target triple = "arm64--"
4 ; AArch64InstrInfo::optimizeCondBranch() optimizes the
5 ; "x = and y, 256; cmp x, 0; br" from an "and; cbnz" to a tbnz instruction.
6 ; It forgot to clear the a flag resulting in a MachineVerifier complaint.
8 ; Writing a stable/simple test is tricky since most tbz instructions are already
9 ; formed in SelectionDAG, optimizeCondBranch() only triggers if the and
10 ; instruction is in a different block than the conditional jump.
12 ; CHECK-LABEL: func
13 ; CHECK-NOT: and
14 ; CHECK: tbz
15 define void @func() {
16   %c0 = icmp sgt i64 0, 0
17   br i1 %c0, label %b1, label %b6
19 b1:
20   br i1 undef, label %b3, label %b2
22 b2:
23   %v0 = tail call i32 @extfunc()
24   br label %b5
26 b3:
27   %v1 = load i32, i32* undef, align 4
28   %v2 = and i32 %v1, 256
29   br label %b5
31 b5:
32   %v3 = phi i32 [ %v2, %b3 ], [ %v0, %b2 ]
33   %c1 = icmp eq i32 %v3, 0
34   br i1 %c1, label %b8, label %b7
36 b6:
37   tail call i32 @extfunc()
38   ret void
40 b7:
41   tail call i32 @extfunc()
42   ret void
44 b8:
45   ret void
48 declare i32 @extfunc()