Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / cse-add-with-overflow.ll
blob40214267e174311aad5fc9f9f40930277f947d4e
1 ; RUN: llc < %s -mtriple=x86_64-darwin -mcpu=generic | FileCheck %s
2 ; XFAIL: *
3 ; rdar:15661073 simple example of redundant adds
5 ; MachineCSE should coalesce trivial subregister copies.
7 ; The extra movl+addl should be removed during MachineCSE.
8 ; CHECK-LABEL: redundantadd
9 ; CHECK: cmpq
10 ; CHECK: movq
11 ; CHECK-NOT: movl
12 ; CHECK: addl
13 ; CHECK-NOT: addl
14 ; CHECK: ret
16 define i64 @redundantadd(ptr %a0, ptr %a1) {
17 entry:
18   %tmp8 = load i64, ptr %a0, align 8
19   %tmp12 = load i64, ptr %a1, align 8
20   %tmp13 = icmp ult i64 %tmp12, -281474976710656
21   br i1 %tmp13, label %exit1, label %body
23 exit1:
24   unreachable
26 body:
27   %tmp14 = trunc i64 %tmp8 to i32
28   %tmp15 = trunc i64 %tmp12 to i32
29   %tmp16 = tail call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %tmp14, i32 %tmp15)
30   %tmp17 = extractvalue { i32, i1 } %tmp16, 1
31   br i1 %tmp17, label %exit2, label %return
33 exit2:
34   unreachable
36 return:
37   %tmp18 = add i64 %tmp12, %tmp8
38   %tmp19 = and i64 %tmp18, 4294967295
39   %tmp20 = or i64 %tmp19, -281474976710656
40   ret i64 %tmp20
43 declare { i32, i1 } @llvm.sadd.with.overflow.i32(i32, i32)