1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/DebugInfo/2009-10-16-Phi.ll
Daniel Dunbar 7f9b7bc8ff Reclaim a lost month.
llvm-svn: 84303
2009-10-17 03:28:20 +00:00

13 lines
185 B
LLVM

; RUN: llvm-as %s -disable-output
define i32 @foo() {
E:
br label %B2
B1:
br label %B2
B2:
%0 = phi i32 [ 0, %E ], [ 1, %B1 ], !dbg !0
ret i32 %0
}
!0 = metadata !{i32 42}