diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-21 18:39:26 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-21 18:39:26 +0000 |
commit | 6f4fc3679c4c860038f4fe0b277cc1196dbcc5a3 (patch) | |
tree | 1ad7e0065098dc982f8315c9fea0e4b52757cfd3 /target-mips/op_helper.c | |
parent | b9d38e9510b38a8c101fa50cbd6f75d9eff61261 (diff) | |
download | qemu-6f4fc3679c4c860038f4fe0b277cc1196dbcc5a3.tar.gz qemu-6f4fc3679c4c860038f4fe0b277cc1196dbcc5a3.tar.bz2 qemu-6f4fc3679c4c860038f4fe0b277cc1196dbcc5a3.zip |
Add 'static' to please Sparse
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 194414c74d..d3dab33a36 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1868,7 +1868,7 @@ void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, #define FLOAT_SNAN64 0x7fffffffffffffffULL /* convert MIPS rounding mode in FCR31 to IEEE library */ -unsigned int ieee_rm[] = { +static unsigned int ieee_rm[] = { float_round_nearest_even, float_round_to_zero, float_round_up, |