mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
13 lines
209 B
LLVM
13 lines
209 B
LLVM
|
; RUN: llc < %s -march=arm | FileCheck %s
|
||
|
; rdar://7961298
|
||
|
|
||
|
define arm_apcscc void @t() nounwind {
|
||
|
entry:
|
||
|
; CHECK: t:
|
||
|
; CHECK: trap
|
||
|
call void @llvm.trap()
|
||
|
unreachable
|
||
|
}
|
||
|
|
||
|
declare void @llvm.trap() nounwind
|