1// RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve  2>&1 < %s| FileCheck %s
2
3// Immediate out of upper bound [-32, 31].
4addvl x3, x5, #32
5// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be an integer in range [-32, 31].
6// CHECK-NEXT: addvl x3, x5, #32
7// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
8
9// addvl requires an immediate, not a register.
10addvl x3, x5, x6
11// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be an integer in range [-32, 31].
12// CHECK-NEXT: addvl x3, x5, x6
13// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
14