Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2009-11-27 13:12:48 +0300
committerMarek Safar <marek.safar@gmail.com>2009-11-27 13:12:48 +0300
commit12ab6eaf6cc61c50686b36e7c22febfac6507270 (patch)
tree8aafe47f0e759b6fe088684f4ac05d5d4787ddf9 /mcs/tests/test-733.cs
parent9a708bffad7fbbad5ed485243052cea0e26e7398 (diff)
Fix 64bit
svn path=/trunk/mcs/; revision=147024
Diffstat (limited to 'mcs/tests/test-733.cs')
-rw-r--r--mcs/tests/test-733.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-733.cs b/mcs/tests/test-733.cs
index 06a2c6356cd..20c0857a800 100644
--- a/mcs/tests/test-733.cs
+++ b/mcs/tests/test-733.cs
@@ -7,7 +7,7 @@ public class Test
float a = 1f / 3;
float b = (float) Math.Acos ((float) (a * 3));
Console.WriteLine (b);
- if (b != 0)
+ if (b != 0 && b != float.NaN)
return 1;
return 0;