software/libbase: __floatunsisf/__floatunsidf
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 27 May 2012 14:05:04 +0000 (16:05 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 27 May 2012 14:05:04 +0000 (16:05 +0200)
software/libbase/softfloat-glue.c

index c688217fee1665c446ffef89595a71910ecc31b4..446163736c0fba4c394f42cd0d46f369101e2354 100644 (file)
@@ -180,6 +180,12 @@ float32 __floatsisf(int32 x)
        return int32_to_float32(x);
 }
 
+float32 __floatunsisf(int32 x);
+float32 __floatunsisf(int32 x)
+{
+       return int32_to_float32(x); // XXX
+}
+
 int32 __fixsfsi(float32 x);
 int32 __fixsfsi(float32 x)
 {
@@ -237,6 +243,12 @@ float64 __floatsidf(int32 x)
        return int32_to_float64(x);
 }
 
+float64 __floatunsidf(int32 x);
+float64 __floatunsidf(int32 x)
+{
+       return int32_to_float64(x); // XXX
+}
+
 int32 __fixdfsi(float64 x);
 int32 __fixdfsi(float64 x)
 {