Use static inline to do the right thing when built in C99 mode. Of course,
[llvm/stm8.git] / test / CodeGen / ARM / trap.ll
blob38842a9646ffcabc1792b0754b6a8be6555b5bc3
1 ; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s -check-prefix=INSTR
2 ; RUN: llc < %s -mtriple=arm-apple-darwin -trap-func=_trap | FileCheck %s -check-prefix=FUNC
3 ; rdar://7961298
4 ; rdar://9249183
6 define void @t() nounwind {
7 entry:
8 ; INSTR: t:
9 ; INSTR: trap
11 ; FUNC: t:
12 ; FUNC: bl __trap
13   call void @llvm.trap()
14   unreachable
17 declare void @llvm.trap() nounwind