Commit 569f5d668c071487a31bdc51b27bbedaa46cb01a
1 parent
750afe93
compilation fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2205 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
1 additions
and
6 deletions
target-arm/nwfpe/fpa11_cprt.c
... | ... | @@ -27,10 +27,6 @@ |
27 | 27 | //#include "fpmodule.h" |
28 | 28 | //#include "fpmodule.inl" |
29 | 29 | |
30 | -extern flag floatx80_is_nan(floatx80); | |
31 | -extern flag float64_is_nan( float64); | |
32 | -extern flag float32_is_nan( float32); | |
33 | - | |
34 | 30 | void SetRoundingMode(const unsigned int opcode); |
35 | 31 | |
36 | 32 | unsigned int PerformFLT(const unsigned int opcode); | ... | ... |
target-mips/op.c
... | ... | @@ -977,9 +977,8 @@ void op_cmp_ ## fmt ## _ ## op (void) \ |
977 | 977 | RETURN(); \ |
978 | 978 | } |
979 | 979 | |
980 | -flag float64_is_unordered(float64 a, float64 b STATUS_PARAM) | |
980 | +int float64_is_unordered(float64 a, float64 b STATUS_PARAM) | |
981 | 981 | { |
982 | - extern flag float64_is_nan( float64 a ); | |
983 | 982 | if (float64_is_nan(a) || float64_is_nan(b)) { |
984 | 983 | float_raise(float_flag_invalid, status); |
985 | 984 | return 1; | ... | ... |