diff options
author | Julien Thierry <jthierry@redhat.com> | 2021-03-03 20:05:33 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2021-05-27 19:38:30 +0300 |
commit | 427bfc59e2281eaede70f050062dc31257c46652 (patch) | |
tree | 22d462279cfcc6a5f1c9a49434e9d76541bb0abf /arch/arm64/lib | |
parent | 72fd723694b6f4f1d1f19f673fb93801d7d1a0e8 (diff) | |
download | linux-427bfc59e2281eaede70f050062dc31257c46652.tar.xz |
arm64: insn: Add SVE instruction class
SVE has been public for some time now. Let the decoder acknowledge
its existence.
Signed-off-by: Julien Thierry <jthierry@redhat.com>
Link: https://lore.kernel.org/r/20210303170536.1838032-6-jthierry@redhat.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/lib')
-rw-r--r-- | arch/arm64/lib/insn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/lib/insn.c b/arch/arm64/lib/insn.c index 6ff8826ae7ea..b506a4b1e38c 100644 --- a/arch/arm64/lib/insn.c +++ b/arch/arm64/lib/insn.c @@ -23,7 +23,7 @@ static const int aarch64_insn_encoding_class[] = { AARCH64_INSN_CLS_UNKNOWN, AARCH64_INSN_CLS_UNKNOWN, - AARCH64_INSN_CLS_UNKNOWN, + AARCH64_INSN_CLS_SVE, AARCH64_INSN_CLS_UNKNOWN, AARCH64_INSN_CLS_LDST, AARCH64_INSN_CLS_DP_REG, |