diff options
-rw-r--r-- | sim/mips/ChangeLog | 4 | ||||
-rw-r--r-- | sim/mips/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 0cf73cbb3..0f84f0b 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2003-01-05 Richard Sandiford <rsandifo@redhat.com> + + * Makefile.in (tmp-run-multi): Fix mips16 filter. + 2003-01-04 Richard Sandiford <rsandifo@redhat.com> Andrew Cagney <ac131313@redhat.com> Gavin Romig-Koch <gavin@redhat.com> diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in index 72ec4ab..b709ce8 100644 --- a/sim/mips/Makefile.in +++ b/sim/mips/Makefile.in @@ -371,7 +371,7 @@ tmp-itable-multi: $(IGEN_INSN) $(IGEN_DC) ../igen/igen $(IGEN_INCLUDE) tmp-run-multi: $(srcdir)/m16run.c for t in $(SIM_MULTI_IGEN_CONFIGS); do \ case $${t} in \ - *:*mips16*:*) \ + m16*) \ m=`echo $${t} | sed -e 's/^m16//' -e 's/:.*//'`; \ sed < $(srcdir)/m16run.c > tmp-run \ -e "s/^sim_/m16$${m}_/" \ |