[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / NVPTX / MachineSink-call.ll
blobee2535f16fc86b0cd1d3785c91006a3176be47d2
1 ; RUN: llc < %s | FileCheck %s
2 ; RUN: %if ptxas %{ llc < %s | %ptxas-verify %}
4 target triple = "nvptx64-nvidia-cuda"
6 declare void @foo()
8 ; Load a value, then call a function.  Branch, and use the loaded value only on
9 ; one side of the branch.  The load shouldn't be sunk beneath the call, because
10 ; the call may modify memory.
11 define i32 @f(i32 %x, ptr %ptr, i1 %cond) {
12 Start:
13   ; CHECK: ld.u32
14   %ptr_val = load i32, ptr %ptr
15   ; CHECK: call.uni
16   call void @foo()
17   br i1 %cond, label %L1, label %L2
18 L1:
19   %ptr_val2 = add i32 %ptr_val, 100
20   br label %L2
21 L2:
22   %v4 = phi i32 [ %x, %Start ], [ %ptr_val2, %L1 ]
23   %v5 = add i32 %v4, 1000
24   ret i32 %v5