1 // RUN: not llvm-mc -triple aarch64-none-linux-gnu -mattr=-neon < %s 2> %t 2 // RUN: FileCheck --check-prefix=CHECK-ERROR < %t %s 3 4 fmla v3.4s, v12.4s, v17.4s 5 fmla v1.2d, v30.2d, v20.2d 6 fmla v9.2s, v9.2s, v0.2s 7 // CHECK-ERROR: error: instruction requires a CPU feature not currently enabled 8 // CHECK-ERROR-NEXT: fmla v3.4s, v12.4s, v17.4s 9 // CHECK-ERROR-NEXT: ^ 10 // CHECK-ERROR-NEXT: error: instruction requires a CPU feature not currently enabled 11 // CHECK-ERROR-NEXT: fmla v1.2d, v30.2d, v20.2d 12 // CHECK-ERROR-NEXT: ^ 13 // CHECK-ERROR-NEXT: error: instruction requires a CPU feature not currently enabled 14 // CHECK-ERROR-NEXT: fmla v9.2s, v9.2s, v0.2s 15 // CHECK-ERROR-NEXT: ^ 16 17 fmls v3.4s, v12.4s, v17.4s 18 fmls v1.2d, v30.2d, v20.2d 19 fmls v9.2s, v9.2s, v0.2s 20 // CHECK-ERROR: error: instruction requires a CPU feature not currently enabled 21 // CHECK-ERROR-NEXT: fmls v3.4s, v12.4s, v17.4s 22 // CHECK-ERROR-NEXT: ^ 23 // CHECK-ERROR-NEXT: error: instruction requires a CPU feature not currently enabled 24 // CHECK-ERROR-NEXT: fmls v1.2d, v30.2d, v20.2d 25 // CHECK-ERROR-NEXT: ^ 26 // CHECK-ERROR-NEXT: error: instruction requires a CPU feature not currently enabled 27 // CHECK-ERROR-NEXT: fmls v9.2s, v9.2s, v0.2s 28 // CHECK-ERROR-NEXT: ^ 29