[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / NVPTX / calls-with-phi.ll
blobaf44b9e483c84345c77cb319fd68236ee3a4c7f7
1 ; RUN: llc < %s -march=nvptx64 2>&1 | FileCheck %s
2 ; RUN: %if ptxas %{ llc < %s -march=nvptx64 | %ptxas-verify %}
4 ; Make sure the example doesn't crash with segfault
6 ; CHECK: .visible .func ({{.*}}) loop
7 define i32 @loop(i32, i32) {
8 entry:
9   br label %loop
11 loop:
12   %i = phi i32 [ %0, %entry ], [ %res, %loop ]
13   %res = call i32 @div(i32 %i, i32 %1)
15   %exitcond = icmp eq i32 %res, %0
16   br i1 %exitcond, label %exit, label %loop
18 exit:
19   ret i32 %res
22 define i32 @div(i32, i32) {
23   ret i32 0