mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
I'm doing this in two phases for a better "git blame" record. This commit removes the previous AArch64 backend and redirects all functionality to ARM64. It also deduplicates test-lines and removes orphaned AArch64 tests. The next step will be "git mv ARM64 AArch64" and rewire most of the tests. Hopefully LLVM is still functional, though it would be even better if no-one ever had to care because the rename happens straight afterwards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209576 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
467 B
ArmAsm
18 lines
467 B
ArmAsm
// PR18929
|
|
// RUN: llvm-mc < %s -triple=arm64-linux-gnueabi -mattr=+fp-armv8,+neon -filetype=obj -o - \
|
|
// RUN: | llvm-objdump --disassemble -arch=arm64 -mattr=+fp-armv8,+neon - | FileCheck %s
|
|
|
|
.text
|
|
// CHECK: cmp w0, #123
|
|
cmp w0, 123
|
|
// CHECK: fmov s0, #1.06250000
|
|
fmov s0, 1.0625
|
|
// CHECK: fcmp s0, #0.0
|
|
fcmp s0, 0.0
|
|
// CHECK: cmgt v0.8b, v15.8b, #0
|
|
cmgt v0.8b, v15.8b, 0
|
|
// CHECK: fcmeq v0.2s, v31.2s, #0.0
|
|
fcmeq v0.2s, v31.2s, 0.0
|
|
l1:
|
|
l2:
|