[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / AArch64 / SVE2 / bsl-diagnostics.s
blobe2de021be7afdfadff1994e939e6552f8c1e89a0
1 // RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2 2>&1 < %s| FileCheck %s
4 // ------------------------------------------------------------------------- //
5 // Invalid element width
7 bsl z0.b, z0.b, z1.b, z2.b
8 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width
9 // CHECK-NEXT: bsl z0.b, z0.b, z1.b, z2.b
10 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
12 bsl z0.h, z0.h, z1.h, z2.h
13 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width
14 // CHECK-NEXT: bsl z0.h, z0.h, z1.h, z2.h
15 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
17 bsl z0.s, z0.s, z1.s, z2.s
18 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width
19 // CHECK-NEXT: bsl z0.s, z0.s, z1.s, z2.s
20 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
23 // --------------------------------------------------------------------------//
24 // Source and Destination Registers must match
26 bsl z0.d, z1.d, z2.d, z3.d
27 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: operand must match destination register
28 // CHECK-NEXT: bsl z0.d, z1.d, z2.d, z3.d
29 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
32 // --------------------------------------------------------------------------//
33 // Negative tests for instructions that are incompatible with movprfx
35 movprfx z0.d, p0/z, z7.d
36 bsl z0.d, z0.d, z1.d, z2.d
37 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: instruction is unpredictable when following a predicated movprfx, suggest using unpredicated movprfx
38 // CHECK-NEXT: bsl z0.d, z0.d, z1.d, z2.d
39 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}: