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.

12 lines
198 B

; Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=33623
; RUN: llvm-diff %s %s
define i32 @foo(i8*) {
entry:
indirectbr i8* %0, [label %A, label %B, label %entry]
A:
ret i32 1
B:
ret i32 2
}