[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / MC / AArch64 / SME / addspl-diagnostics.s
blob02b8f6ca765aa7103d9ca6d9e955b6b22e825f9b
1 // RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sme 2>&1 < %s| FileCheck %s
3 // Immediate out of upper bound [-32, 31].
4 addspl x19, x14, #32
5 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be an integer in range [-32, 31].
6 // CHECK-NEXT: addspl x19, x14, #32
7 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
9 // addspl requires an immediate, not a register.
10 addspl x19, x14, x15
11 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be an integer in range [-32, 31].
12 // CHECK-NEXT: addspl x19, x14, x15
13 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}: