Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / add-debug.ll
blob0c6c9a1f235441050419674dc176ae22b311e5db
1 ; RUN: llc < %s -mtriple=amdgcn -mcpu=tahiti -debug
2 ; RUN: llc < %s -mtriple=amdgcn -mcpu=tonga -debug
3 ; REQUIRES: asserts
5 ; Check that SelectionDAGDumper does not crash on int_SI_if.
6 define amdgpu_kernel void @add64_in_branch(ptr addrspace(1) %out, ptr addrspace(1) %in, i64 %a, i64 %b, i64 %c) {
7 entry:
8   %0 = icmp eq i64 %a, 0
9   br i1 %0, label %if, label %else
11 if:
12   %1 = load i64, ptr addrspace(1) %in
13   br label %endif
15 else:
16   %2 = add i64 %a, %b
17   br label %endif
19 endif:
20   %3 = phi i64 [%1, %if], [%2, %else]
21   store i64 %3, ptr addrspace(1) %out
22   ret void