mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
8c375f8d21
The -mattr options in these four tests have no effect on the output of llvm-objdump. In the case of the two Mips tests, removing the -mattr option left duplicate RUN lines so the duplicates have been removed. llvm-svn: 272906
18 lines
446 B
ArmAsm
18 lines
446 B
ArmAsm
// PR18929
|
|
// RUN: llvm-mc < %s -triple=aarch64-linux-gnueabi -mattr=+fp-armv8,+neon -filetype=obj -o - \
|
|
// RUN: | llvm-objdump --disassemble -arch=arm64 - | 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:
|