From a06446f29de1c890ca3068d1b9e1f33e6ae09834 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Thu, 22 Oct 2020 16:40:18 -0700 Subject: Swap MAX and MINU encodings --- riscv/encoding.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'riscv/encoding.h') diff --git a/riscv/encoding.h b/riscv/encoding.h index 158a622..fb1536e 100644 --- a/riscv/encoding.h +++ b/riscv/encoding.h @@ -538,10 +538,10 @@ #define MASK_CLMULH 0xfe00707f #define MATCH_MIN 0xa004033 #define MASK_MIN 0xfe00707f -#define MATCH_MAX 0xa005033 -#define MASK_MAX 0xfe00707f -#define MATCH_MINU 0xa006033 +#define MATCH_MINU 0xa005033 #define MASK_MINU 0xfe00707f +#define MATCH_MAX 0xa006033 +#define MASK_MAX 0xfe00707f #define MATCH_MAXU 0xa007033 #define MASK_MAXU 0xfe00707f #define MATCH_SHFL 0x8001033 -- cgit v1.1