You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
177 B
14 lines
177 B
4 months ago
|
; 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 = !{i32 42}
|