summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bitcode/callbr.ll
blob: ecc397ac7546781cadeba575d229e1f28c9dc0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN:  llvm-dis < %s.bc | FileCheck %s

; callbr.ll.bc was generated by passing this file to llvm-as.

define i32 @test_asm_goto(i32 %x){
entry:
; CHECK:      callbr void asm "", "r,X"(i32 %x, i8* blockaddress(@test_asm_goto, %fail))
; CHECK-NEXT: to label %normal [label %fail]
  callbr void asm "", "r,X"(i32 %x, i8* blockaddress(@test_asm_goto, %fail)) to label %normal [label %fail]
normal:
  ret i32 1
fail:
  ret i32 0
}
OpenPOWER on IntegriCloud