On 1/21/19 8:08 PM, Aleksandar Markovic wrote: > From: Aleksandar Markovic <amarko...@wavecomp.com> > > Remove a macro that is never used. > > Signed-off-by: Aleksandar Markovic <amarko...@wavecomp.com>
Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com> > --- > target/mips/translate.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/target/mips/translate.c b/target/mips/translate.c > index fb2c42c..aad760c 100644 > --- a/target/mips/translate.c > +++ b/target/mips/translate.c > @@ -18393,7 +18393,6 @@ enum { > > #define NANOMIPS_EXTRACT_RD(op) ((op >> 7) & 0x7) > #define NANOMIPS_EXTRACT_RS(op) ((op >> 4) & 0x7) > -#define NANOMIPS_EXTRACT_RS2(op) uMIPS_RS(op) > #define NANOMIPS_EXTRACT_RS1(op) ((op >> 1) & 0x7) > #define NANOMIPS_EXTRACT_RD5(op) ((op >> 5) & 0x1f) > #define NANOMIPS_EXTRACT_RS5(op) (op & 0x1f) >