aboutsummaryrefslogtreecommitdiff
path: root/sim/rx/fpu.c
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2021-01-28 17:27:44 +0000
committerAndrew Burgess <andrew.burgess@embecosm.com>2021-02-08 11:01:07 +0000
commit73d4725f218a68bce7923d8a647a54f1e629b58d (patch)
treebde819815badf19c74897319300774093dd4a36c /sim/rx/fpu.c
parent1c3e93a41f88703818999ed492699de26b0748cd (diff)
downloadfsf-binutils-gdb-73d4725f218a68bce7923d8a647a54f1e629b58d.zip
fsf-binutils-gdb-73d4725f218a68bce7923d8a647a54f1e629b58d.tar.gz
fsf-binutils-gdb-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/fpu.c')
-rw-r--r--sim/rx/fpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/rx/fpu.c b/sim/rx/fpu.c
index 00c3ab7..f9e9007 100644
--- a/sim/rx/fpu.c
+++ b/sim/rx/fpu.c
@@ -354,7 +354,7 @@ static const char *ex_names[] = {
/* This checks for all exceptional cases (not all FP exceptions) and
returns TRUE if it is providing the result in *c. If it returns
FALSE, the caller should do the "normal" operation. */
-int
+static int
check_exceptions (FP_Parts *a, FP_Parts *b, fp_t *c,
FP_ExceptionCases ex_tab[5][5],
FP_ExceptionCases *case_ret)