diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-01-28 17:29:11 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-02-08 11:01:07 +0000 |
commit | 4b426396368fd250a502a9c547da7143af4afbe0 (patch) | |
tree | ca33715963ba93c836f2c2aab00853ab98e9b9da /sim | |
parent | 73d4725f218a68bce7923d8a647a54f1e629b58d (diff) | |
download | gdb-4b426396368fd250a502a9c547da7143af4afbe0.zip gdb-4b426396368fd250a502a9c547da7143af4afbe0.tar.gz gdb-4b426396368fd250a502a9c547da7143af4afbe0.tar.bz2 |
sim/rx: delete an unused function
This function is not used.
sim/rx/ChangeLog:
* err.c (execution_error_exit_all): Delete.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/rx/ChangeLog | 4 | ||||
-rw-r--r-- | sim/rx/err.c | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 732c902..b899269 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,5 +1,9 @@ 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com> + * err.c (execution_error_exit_all): Delete. + +2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com> + * fpu.c (check_exceptions): Make static. * gdb-if.c (handle_step): Likewise. * mem.c (mem_put_byte): Likewise. diff --git a/sim/rx/err.c b/sim/rx/err.c index ce1cd57..e72b6d3 100644 --- a/sim/rx/err.c +++ b/sim/rx/err.c @@ -61,15 +61,6 @@ execution_error_init_debugger (void) } void -execution_error_exit_all (void) -{ - int i; - - for (i = 0; i < SIM_ERR_NUM_ERRORS; i++) - ee_actions[i] = SIM_ERRACTION_EXIT; -} - -void execution_error_warn_all (void) { int i; |