xref: /llvm-project/llvm/test/MC/AArch64/SVE/directive-arch.s (revision ff3f3a54e2d1b05c36943bf88ae0be7475d622ed)
1// RUN: llvm-mc -triple=aarch64 < %s | FileCheck %s
2
3.arch armv8-a+sve
4
5ptrue   p0.b, pow2
6// CHECK: ptrue   p0.b, pow2
7
8// Test that the implied +sve feature is also set from +sve2.
9.arch armv8-a+sve2
10
11ptrue   p0.b, pow2
12// CHECK: ptrue   p0.b, pow2
13