diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-01-28 17:27:44 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-02-08 11:01:07 +0000 |
commit | 73d4725f218a68bce7923d8a647a54f1e629b58d (patch) | |
tree | bde819815badf19c74897319300774093dd4a36c /sim/rx/gdb-if.c | |
parent | 1c3e93a41f88703818999ed492699de26b0748cd (diff) | |
download | binutils-73d4725f218a68bce7923d8a647a54f1e629b58d.zip binutils-73d4725f218a68bce7923d8a647a54f1e629b58d.tar.gz binutils-73d4725f218a68bce7923d8a647a54f1e629b58d.tar.bz2 |
sim/rx: mark some functions as static
Some functions that should be marked static.
sim/rx/ChangeLog:
* fpu.c (check_exceptions): Make static.
* gdb-if.c (handle_step): Likewise.
* mem.c (mem_put_byte): Likewise.
Diffstat (limited to 'sim/rx/gdb-if.c')
-rw-r--r-- | sim/rx/gdb-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c index 55eb13d..3d052e6 100644 --- a/sim/rx/gdb-if.c +++ b/sim/rx/gdb-if.c @@ -688,7 +688,7 @@ rx_signal_to_gdb_signal (int rx) /* Take a step return code RC and set up the variables consulted by sim_stop_reason appropriately. */ -void +static void handle_step (int rc) { if (execution_error_get_last_error () != SIM_ERR_NONE) |