llvm-6502/test/CodeGen/Thumb/trap.ll

13 lines
216 B
LLVM
Raw Normal View History

; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
; rdar://7961298
define void @t() nounwind {
entry:
; CHECK-LABEL: t:
; CHECK: trap
call void @llvm.trap()
unreachable
}
declare void @llvm.trap() nounwind