1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Other/2002-02-24-InlineBrokePHINodes.ll

24 lines
581 B
LLVM
Raw Normal View History

; Inlining used to break PHI nodes. This tests that they are correctly updated
2002-02-25 01:34:18 +01:00
; when a node is split around the call instruction. The verifier caught the error.
;
; RUN: opt %s -inline
2002-02-25 01:34:18 +01:00
;
define i64 @test(i64 %X) {
ret i64 %X
}
2002-02-25 01:34:18 +01:00
define i64 @fib(i64 %n) {
; <label>:0
%T = icmp ult i64 %n, 2 ; <i1> [#uses=1]
br i1 %T, label %BaseCase, label %RecurseCase
2002-02-25 01:34:18 +01:00
RecurseCase: ; preds = %0
%result = call i64 @test( i64 %n ) ; <i64> [#uses=0]
br label %BaseCase
2002-02-25 01:34:18 +01:00
BaseCase: ; preds = %RecurseCase, %0
%X = phi i64 [ 1, %0 ], [ 2, %RecurseCase ] ; <i64> [#uses=1]
ret i64 %X
}