mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
87476b607c
This is mostly aimed at the NEON logical operations and MOVI/MVNI (since they accept weird shifts which are more naturally understandable in hex notation). Also changes BRK/HINT etc, which is probably a neutral change, but easier than the alternative. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207634 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
183 B
LLVM
9 lines
183 B
LLVM
; RUN: llc < %s -march=arm64 | FileCheck %s
|
|
define void @foo() nounwind {
|
|
; CHECK: foo
|
|
; CHECK: brk #0x1
|
|
tail call void @llvm.trap()
|
|
ret void
|
|
}
|
|
declare void @llvm.trap() nounwind
|