mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
78eedb15c9
According to the specification, CRC is an optional extension of the architecture. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207214 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
772 B
ArmAsm
25 lines
772 B
ArmAsm
// RUN: not llvm-mc -triple arm64-linux-gnu -mattr=-fp-armv8,-crc < %s 2> %t
|
|
// RUN: FileCheck --check-prefix=CHECK-ERROR < %t %s
|
|
|
|
|
|
fcvt d0, s0
|
|
// CHECK-ERROR: error: instruction requires: fp-armv8
|
|
// CHECK-ERROR-NEXT: fcvt d0, s0
|
|
// CHECK-ERROR-NEXT: ^
|
|
|
|
fmla v9.2s, v9.2s, v0.2s
|
|
// CHECK-ERROR: error: instruction requires: neon
|
|
// CHECK-ERROR-NEXT: fmla v9.2s, v9.2s, v0.2s
|
|
// CHECK-ERROR-NEXT: ^
|
|
|
|
pmull v0.1q, v1.1d, v2.1d
|
|
// CHECK-ERROR: error: instruction requires: crypto
|
|
// CHECK-ERROR-NEXT: pmull v0.1q, v1.1d, v2.1d
|
|
// CHECK-ERROR-NEXT: ^
|
|
|
|
crc32b w5, w7, w20
|
|
// CHECK-ERROR: error: instruction requires: crc
|
|
// CHECK-ERROR-NEXT: crc32b w5, w7, w20
|
|
// CHECK-ERROR-NEXT: ^
|
|
|