diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-04-25 18:11:35 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-26 22:39:55 -0400 |
commit | bd0918c910b7c4ee056d9c3413f8c680dff11584 (patch) | |
tree | af087569015bdab3a78c4445c5224c02e7fc1463 /sim/mn10300 | |
parent | 66d055c75479e0c51745fc3b40faec6df7a01620 (diff) | |
download | gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.zip gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.tar.gz gdb-bd0918c910b7c4ee056d9c3413f8c680dff11584.tar.bz2 |
sim: nltvals: unify common syscall tables
Since libgloss provides a default syscall table for arches, use that
to provide the default syscall table for ports. Only the exceptions
need to be enumerated now with the common logic as the default.
Diffstat (limited to 'sim/mn10300')
-rw-r--r-- | sim/mn10300/ChangeLog | 4 | ||||
-rw-r--r-- | sim/mn10300/Makefile.in | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index aa09b2c..e0fcfcd 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2021-04-26 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (NL_TARGET): Delete. + 2021-04-23 Mike Frysinger <vapier@gentoo.org> * configure.ac (SIM_AC_OPTION_HARDWARE): Delete first two args. diff --git a/sim/mn10300/Makefile.in b/sim/mn10300/Makefile.in index 9852f66..39faa30 100644 --- a/sim/mn10300/Makefile.in +++ b/sim/mn10300/Makefile.in @@ -29,9 +29,6 @@ SIM_EXTRA_CLEAN = clean-igen # Extra dependencies for "sim-main.h" SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h -# Select mn10300 support in nltvals.def. -NL_TARGET = -DNL_TARGET_mn10300 - # List of extra flags to always pass to $(CC). SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20 |