diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-10-29 15:10:09 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-10-29 15:10:09 +0000 |
commit | 569f5d668c071487a31bdc51b27bbedaa46cb01a (patch) | |
tree | bc0543543f1f64cb9fd5b7c571a07eeacbff5796 /target-mips | |
parent | 750afe93fd15fafc20b6c34d30f339547d15c2d1 (diff) |
compilation fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2205 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index 39db3ce959..638fd3b334 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -977,9 +977,8 @@ void op_cmp_ ## fmt ## _ ## op (void) \ RETURN(); \ } -flag float64_is_unordered(float64 a, float64 b STATUS_PARAM) +int float64_is_unordered(float64 a, float64 b STATUS_PARAM) { - extern flag float64_is_nan( float64 a ); if (float64_is_nan(a) || float64_is_nan(b)) { float_raise(float_flag_invalid, status); return 1; |