diff options
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; |