Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / machine-sink.ll
blob7e2b113a36bdc127f406a6e8155396f1aeb8089c
1 ; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s
2 ; RUN: llc < %s -mtriple=x86_64-pc-linux -check-bfi-unknown-block-queries=true | FileCheck %s
4 ; Checks if movl $1 is sinked to critical edge.
5 ; CHECK-NOT: movl $1
6 ; CHECK: jbe
7 ; CHECK: movl $1
8 define i32 @test(i32 %n, i32 %k) nounwind  {
9 entry:
10   %cmp = icmp ugt i32 %k, %n
11   br i1 %cmp, label %ifthen, label %ifend, !prof !1
13 ifthen:
14   %y = add i32 %k, 2
15   br label %ifend
17 ifend:
18   %ret = phi i32 [ 1, %entry ] , [ %y, %ifthen]
19   ret i32 %ret
22 !1 = !{!"branch_weights", i32 100, i32 1}