]> git.proxmox.com Git - mirror_qemu.git/commitdiff
compilation fix
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Oct 2006 15:10:09 +0000 (15:10 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Oct 2006 15:10:09 +0000 (15:10 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2205 c046a42c-6fe2-441c-8c8c-71466251a162

target-arm/nwfpe/fpa11_cprt.c
target-mips/op.c

index 91f2d80018eb68ad3f36e01d1a2c22aee0e4193c..3be9b42a9057712460ad6b32bd63ed640bf046c1 100644 (file)
 //#include "fpmodule.h"
 //#include "fpmodule.inl"
 
-extern flag floatx80_is_nan(floatx80);
-extern flag float64_is_nan( float64);
-extern flag float32_is_nan( float32);
-
 void SetRoundingMode(const unsigned int opcode);
 
 unsigned int PerformFLT(const unsigned int opcode);
index 39db3ce959ee6db9b0dc62048f55398fe61cef4f..638fd3b33417a9e14ad7f88c0afc5ab88d12f424 100644 (file)
@@ -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;