From: Mike Frysinger Date: Tue, 9 Jun 2015 14:31:51 +0000 (+0800) Subject: sim: mn10300: add missing static markings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2cc78d4dd7cb533024eab3a59fb278e03fb51c87;p=binutils-gdb.git sim: mn10300: add missing static markings --- diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index c32c69e5dd4..7cc0f320cd7 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2015-06-11 Mike Frysinger + + * interp.c (round_64, fpu_status_ok): Add static. + 2015-06-11 Mike Frysinger * interp.c (mn10300_debug): Delete. diff --git a/sim/mn10300/interp.c b/sim/mn10300/interp.c index f6f093d6a8c..e24cbc59628 100644 --- a/sim/mn10300/interp.c +++ b/sim/mn10300/interp.c @@ -629,7 +629,7 @@ reg2val_64 (const void *reg, sim_fpu *val) /* Round the given sim_fpu value to double precision, following the target platform rounding and denormalization conventions. On AM33/2.0, round_near is the only rounding mode. */ -int +static int round_64 (sim_fpu *val) { return sim_fpu_round_64 (val, sim_fpu_round_near, sim_fpu_denorm_zero); @@ -657,7 +657,7 @@ fp_double_prec = { /* Check whether overflow, underflow or inexact exceptions should be raised. */ -int +static int fpu_status_ok (sim_fpu_status stat) { if ((stat & sim_fpu_status_overflow)