diff options
Diffstat (limited to 'llvm/test/MC/AArch64/SVE/nand.s')
| -rw-r--r-- | llvm/test/MC/AArch64/SVE/nand.s | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/test/MC/AArch64/SVE/nand.s b/llvm/test/MC/AArch64/SVE/nand.s new file mode 100644 index 00000000000..c730ab488b4 --- /dev/null +++ b/llvm/test/MC/AArch64/SVE/nand.s @@ -0,0 +1,20 @@ +// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \ +// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST +// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ +// RUN: | FileCheck %s --check-prefix=CHECK-ERROR +// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ +// RUN: | llvm-objdump -d -mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST +// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ +// RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN + +nand p0.b, p0/z, p0.b, p0.b +// CHECK-INST: nand p0.b, p0/z, p0.b, p0.b +// CHECK-ENCODING: [0x10,0x42,0x80,0x25] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 42 80 25 <unknown> + +nand p15.b, p15/z, p15.b, p15.b +// CHECK-INST: nand p15.b, p15/z, p15.b, p15.b +// CHECK-ENCODING: [0xff,0x7f,0x8f,0x25] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: ff 7f 8f 25 <unknown> |

