X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fbasic-float.cs;h=e6a14456f95e4a3750f7d6247cf3fb97851a5fa4;hb=5d97d9b6c91b8000a356f7cafeeb9747db2b3c9f;hp=0eb1e240bc5348d18f4d81badc38b476dee69152;hpb=559ad5b34bc086b51af2e589b32ea2eae0f78820;p=mono.git diff --git a/mono/mini/basic-float.cs b/mono/mini/basic-float.cs index 0eb1e240bc5..e6a14456f95 100644 --- a/mono/mini/basic-float.cs +++ b/mono/mini/basic-float.cs @@ -26,14 +26,14 @@ using System.Reflection; /* A comparison made to same variable. */ #pragma warning disable 1718 -#if MOBILE +#if __MOBILE__ class FloatTests #else class Tests #endif { -#if !MOBILE +#if !__MOBILE__ public static int Main (string[] args) { return TestDriver.RunTests (typeof (Tests), args); } @@ -631,8 +631,8 @@ class Tests public static int test_0_float_precision () { float f1 = 3.40282346638528859E+38f; float f2 = 3.40282346638528859E+38f; - float PositiveInfinity = 1.0f / 0.0f; - float f = f1 + f2; + float PositiveInfinity = (float)(1.0f / 0.0f); + float f = (float)(f1 + f2); return f == PositiveInfinity ? 0 : 1; }