Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / pr28489.ll
blobe7e1331fbd1fff4b1230d595abbbec3faa003dec
1 ; ; RUN: llc < %s -mtriple=i686-pc-linux -O0 | FileCheck %s
2 declare void @g(i32, i1)
4 ;CHECK-LABEL: f:
5 ;CHECK: cmpxchg8b
6 ;CHECK: sete [[REG:%[abcd]l]]
7 ;CHECK: movzbl [[REG]]
8 define void @f(ptr %arg, i64 %arg1) {
9 entry:
10   %tmp5 = cmpxchg ptr %arg, i64 %arg1, i64 %arg1 seq_cst seq_cst
11   %tmp7 = extractvalue { i64, i1 } %tmp5, 1
12   %tmp9 = zext i1 %tmp7 to i32
13   call void @g(i32 %tmp9, i1 %tmp7)
14   ret void