Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / NVPTX / TailDuplication-convergent.ll
blob32fcb3bff619bd90a6b6008c688abe54abb78b05
1 ; RUN: llc -O2 -tail-dup-size=100 -enable-tail-merge=0 < %s | FileCheck %s
2 ; RUN: %if ptxas %{ llc -O2 -tail-dup-size=100 -enable-tail-merge=0 < %s | %ptxas-verify %}
3 target triple = "nvptx64-nvidia-cuda"
5 declare void @foo()
6 declare void @llvm.nvvm.barrier0()
8 ; syncthreads shouldn't be duplicated.
9 ; CHECK: .func call_syncthreads
10 ; CHECK: bar.sync
11 ; CHECK-NOT: bar.sync
12 define void @call_syncthreads(ptr %a, ptr %b, i1 %cond, i1 %cond2) nounwind {
13   br i1 %cond, label %L1, label %L2
14   br i1 %cond2, label %Ret, label %L1
15 Ret:
16   ret void
17 L1:
18   store i32 0, ptr %a
19   br label %L42
20 L2:
21   store i32 1, ptr %a
22   br label %L42
23 L42:
24   call void @llvm.nvvm.barrier0()
25   br label %Ret
28 ; Check that call_syncthreads really does trigger tail duplication.
29 ; CHECK: .func call_foo
30 ; CHECK: call
31 ; CHECK: call
32 define void @call_foo(ptr %a, ptr %b, i1 %cond, i1 %cond2) nounwind {
33   br i1 %cond, label %L1, label %L2
34   br i1 %cond2, label %Ret, label %L1
35 Ret:
36   ret void
37 L1:
38   store i32 0, ptr %a
39   br label %L42
40 L2:
41   store i32 1, ptr %a
42   br label %L42
43 L42:
44   call void @foo()
45   br label %Ret