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>2010-10-15 22:17:42 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-15 22:17:42 +0400
commit67a6907f336b1163cefa0f0a8005aaf018947168 (patch)
tree8ad8477acf3e1d94e9326cb0710b89d696078154 /mcs/tests/gtest-450.cs
parentcfd260225a2a3645f3f9ca4f50e92427d06f0baa (diff)
[646997] Correctly emit platform ILOnly flag
Diffstat (limited to 'mcs/tests/gtest-450.cs')
-rw-r--r--mcs/tests/gtest-450.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/gtest-450.cs b/mcs/tests/gtest-450.cs
index 541f5e3d817..5f78ba0533f 100644
--- a/mcs/tests/gtest-450.cs
+++ b/mcs/tests/gtest-450.cs
@@ -12,7 +12,7 @@ class Program {
typeof (Program).Module.GetPEKind (out pekind, out machine);
- if ((pekind & PortableExecutableKinds.ILOnly) != 0)
+ if ((pekind & PortableExecutableKinds.ILOnly) == 0)
return 1;
if ((pekind & PortableExecutableKinds.Required32Bit) == 0)