mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 02:58:10 +00:00
AArch64/ARM64: enable MC-level diagnostic tests for NEON insts.
Obviously we can't expect the two backends to produce identical diagnostics, since what's possible depends quite a bit on how the .td files are structured. I think the ARM64 diagnostics are basically of the same quality in all the changed cases, so I've split the CHECK lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208084 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
09b3bd8ca3
commit
c08733f867
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,9 @@
|
||||
// RUN: not llvm-mc -triple aarch64-none-linux-gnu -mattr=-neon < %s 2> %t
|
||||
// RUN: FileCheck --check-prefix=CHECK-ERROR < %t %s
|
||||
|
||||
// RUN: not llvm-mc -triple arm64-none-linux-gnu -mattr=-neon < %s 2> %t
|
||||
// RUN: FileCheck --check-prefix=CHECK-ARM64-ERROR < %t %s
|
||||
|
||||
fmla v3.4s, v12.4s, v17.4s
|
||||
fmla v1.2d, v30.2d, v20.2d
|
||||
fmla v9.2s, v9.2s, v0.2s
|
||||
@ -14,6 +17,16 @@
|
||||
// CHECK-ERROR-NEXT: fmla v9.2s, v9.2s, v0.2s
|
||||
// CHECK-ERROR-NEXT: ^
|
||||
|
||||
// CHECK-ARM64-ERROR: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmla v3.4s, v12.4s, v17.4s
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
// CHECK-ARM64-ERROR-NEXT: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmla v1.2d, v30.2d, v20.2d
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
// CHECK-ARM64-ERROR-NEXT: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmla v9.2s, v9.2s, v0.2s
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
|
||||
fmls v3.4s, v12.4s, v17.4s
|
||||
fmls v1.2d, v30.2d, v20.2d
|
||||
fmls v9.2s, v9.2s, v0.2s
|
||||
@ -26,3 +39,13 @@
|
||||
// CHECK-ERROR-NEXT: error: instruction requires a CPU feature not currently enabled
|
||||
// CHECK-ERROR-NEXT: fmls v9.2s, v9.2s, v0.2s
|
||||
// CHECK-ERROR-NEXT: ^
|
||||
|
||||
// CHECK-ARM64-ERROR: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmls v3.4s, v12.4s, v17.4s
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
// CHECK-ARM64-ERROR-NEXT: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmls v1.2d, v30.2d, v20.2d
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
// CHECK-ARM64-ERROR-NEXT: error: instruction requires: neon
|
||||
// CHECK-ARM64-ERROR-NEXT: fmls v9.2s, v9.2s, v0.2s
|
||||
// CHECK-ARM64-ERROR-NEXT: ^
|
||||
|
Loading…
Reference in New Issue
Block a user