[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / NVPTX / calls-with-phi.ll
blob6e010ea9adc34c820f1ff5d7315b29c3f3ab55e1
1 ; RUN: llc < %s -march=nvptx 2>&1 | FileCheck %s
2 ; Make sure the example doesn't crash with segfault
4 ; CHECK: .visible .func ({{.*}}) loop
5 define i32 @loop(i32, i32) {
6 entry:
7   br label %loop
9 loop:
10   %i = phi i32 [ %0, %entry ], [ %res, %loop ]
11   %res = call i32 @div(i32 %i, i32 %1)
13   %exitcond = icmp eq i32 %res, %0
14   br i1 %exitcond, label %exit, label %loop
16 exit:
17   ret i32 %res
20 define i32 @div(i32, i32) {
21   ret i32 0