]> git.proxmox.com Git - mirror_qemu.git/blobdiff - fpu/softfloat-native.c
find -type f | xargs sed -i 's/[\t ]$//g' # on most files
[mirror_qemu.git] / fpu / softfloat-native.c
index 9994f6d27cdcc51db97975d53784364ce2a29ff7..e58551f331fdf6ed1465d94fb503b046643f5ba2 100644 (file)
@@ -59,7 +59,7 @@ double qemu_rint(double x)
     double y = 4503599627370496.0;
     if (fabs(x) >= y)
         return x;
-    if (x < 0) 
+    if (x < 0)
         y = -y;
     y = (x + y) - y;
     if (y == 0.0)
@@ -131,7 +131,7 @@ static inline int long_to_int32(long a)
 #else
 static inline int long_to_int32(long a)
 {
-    if (a != (int32_t)a) 
+    if (a != (int32_t)a)
         a = 0x80000000;
     return a;
 }