mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
ca0f4dc4f0
This commit starts with a "git mv ARM64 AArch64" and continues out from there, renaming the C++ classes, intrinsics, and other target-local objects for consistency. "ARM64" test directories are also moved, and tests that began their life in ARM64 use an arm64 triple, those from AArch64 use an aarch64 triple. Both should be equivalent though. This finishes the AArch64 merge, and everyone should feel free to continue committing as normal now. llvm-svn: 209577
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: ^
|
|
|