From 279cca90f4a3d7dca48691f3c307d35f9904d2b4 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 27 Nov 1996 16:54:21 +0000 Subject: [PATCH] * gencode.c (process_instructions): If ! proc64, skip DOUBLEWORD 16 bit instructions. --- sim/mips/gencode.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sim/mips/gencode.c b/sim/mips/gencode.c index 96433e92e5e..74b2deddbf9 100644 --- a/sim/mips/gencode.c +++ b/sim/mips/gencode.c @@ -1438,6 +1438,9 @@ process_instructions(doarch,features) const char *bitmap; int num; + if (! proc64 && GETDATASIZEINSN (&MIPS16_DECODE[loop]) == DOUBLEWORD) + continue; + bitmap = MIPS16_DECODE[loop].bitmap; switch (MIPS16_DECODE[loop].mark) { -- 2.30.2