[llvm-readobj] - Refine the LLVM-style output to be consistent.
[llvm-complete.git] / test / Verifier / callbr.ll
blob403cc573d0dd0d5b5c0deda63804751af93986c6
1 ; RUN: not opt -S %s -verify 2>&1 | FileCheck %s
3 ; CHECK: Indirect label missing from arglist.
4 define void @foo() {
5   ; The %4 in the indirect label list is not found in the blockaddresses in the
6   ; arg list (bad).
7   callbr void asm sideeffect "${0:l} {1:l}", "X,X"(i8* blockaddress(@foo, %3), i8* blockaddress(@foo, %2))
8   to label %1 [label %4, label %2]
9 1:
10   ret void
12   ret void
14   ret void
16   ret void
19 ; CHECK-NOT: Indirect label missing from arglist.
20 define void @bar() {
21   ; %4 and %2 are both in the indirect label list and the arg list (good).
22   callbr void asm sideeffect "${0:l} ${1:l}", "X,X"(i8* blockaddress(@bar, %4), i8* blockaddress(@bar, %2))
23   to label %1 [label %4, label %2]
25   ret void
27   ret void
29   ret void
31   ret void
34 ; CHECK-NOT: Indirect label missing from arglist.
35 define void @baz() {
36   ; note %2 blockaddress. Such a case is possible when passing the address of
37   ; a label as an input to the inline asm (both address of label and asm goto
38   ; use blockaddress constants; we're testing that the indirect label list from
39   ; the asm goto is in the arg list to the asm).
40   callbr void asm sideeffect "${0:l} ${1:l} ${2:l}", "X,X,X"(i8* blockaddress(@baz, %4), i8* blockaddress(@baz, %2), i8* blockaddress(@baz, %3))
41   to label %1 [label %3, label %4]
43   ret void
45   ret void
47   ret void
49   ret void