Home | History | Annotate | Download | only in ARM
      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
      5 
      6 define void @t() nounwind {
      7 entry:
      8 ; INSTR: t:
      9 ; INSTR: trap
     10 
     11 ; FUNC: t:
     12 ; FUNC: bl __trap
     13   call void @llvm.trap()
     14   unreachable
     15 }
     16 
     17 declare void @llvm.trap() nounwind
     18