diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-24 15:49:31 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-24 20:34:07 -0500 |
commit | 9db2b719087eb42cfb31018fe87657243f6185c9 (patch) | |
tree | 7beaaeebef0faa8cea69778165bc87ca3995f849 /sim/common | |
parent | cec19744887931294e9d4a1dfa4fa8bd42e57ae5 (diff) | |
download | gdb-9db2b719087eb42cfb31018fe87657243f6185c9.zip gdb-9db2b719087eb42cfb31018fe87657243f6185c9.tar.gz gdb-9db2b719087eb42cfb31018fe87657243f6185c9.tar.bz2 |
sim: cris: move option install to sim_open
We've moved custom option install for other targets to sim_open, so update
cris too. It's the last one using MODULE_LIST, so we can drop that from
the common code too.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/sim-module.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index cb1a9a6..8340928 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2015-12-24 Mike Frysinger <vapier@gentoo.org> + * sim-module.c (MODULE_LIST): Delete. + +2015-12-24 Mike Frysinger <vapier@gentoo.org> + * sim-options.c (OPTION_H8300H, OPTION_H8300S, OPTION_H8300SX): Move to h8300/compile.c. [SIM_H8300] (standard_options): Likewise. diff --git a/sim/common/sim-module.c b/sim/common/sim-module.c index 8498f80..4f23882 100644 --- a/sim/common/sim-module.c +++ b/sim/common/sim-module.c @@ -65,10 +65,6 @@ static MODULE_INSTALL_FN * const modules[] = { /* TODO: Shouldn't have device models here. */ dv_sockser_install, #endif - /* Configured in [simulator specific] additional modules. */ -#ifdef MODULE_LIST - MODULE_LIST -#endif 0 }; |