comparison test/DebugInfo/Generic/2009-10-16-Phi.ll @ 95:afa8332a0e37

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents test/DebugInfo/2009-10-16-Phi.ll@60c9769439b8
children
comparison
equal deleted inserted replaced
84:f3e34b893a5f 95:afa8332a0e37
1 ; RUN: llvm-as %s -disable-output
2
3 define i32 @foo() {
4 E:
5 br label %B2
6 B1:
7 br label %B2
8 B2:
9 %0 = phi i32 [ 0, %E ], [ 1, %B1 ], !dbg !0
10 ret i32 %0
11 }
12
13 !0 = !{i32 42}