Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: frog/tests/leg_only/nan_negate_test.dart

Issue 10332088: Undo optimization in cases where NaN might be involved. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Now with test. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/tests/leg_only/nan_negate_test.dart
diff --git a/frog/tests/leg_only/nan_negate_test.dart b/frog/tests/leg_only/nan_negate_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..47042b694c2fca1b8fab151f5b4375c43c8d82f7
--- /dev/null
+++ b/frog/tests/leg_only/nan_negate_test.dart
@@ -0,0 +1,54 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Don't convert !(a op b) til (a neg-op b) when a or b might be NaN.
+main() {
+ Expect.isFalse(double.NAN >= 0);
+ Expect.isTrue(!(double.NAN < 0));
+
+ Expect.isFalse(double.NAN <= 0);
+ Expect.isTrue(!(double.NAN > 0));
+
+ Expect.isFalse(double.NAN < 0);
+ Expect.isTrue(!(double.NAN >= 0));
+
+ Expect.isFalse(double.NAN > 0);
+ Expect.isTrue(!(double.NAN <= 0));
+
+ Expect.isFalse(double.NAN == 0);
+ Expect.isTrue(!(double.NAN != 0));
+
+ Expect.isFalse(double.NAN != 0);
+ Expect.isTrue(!(double.NAN == 0));
+
+ Expect.isFalse(double.NAN === 0);
+ Expect.isFalse(!(double.NAN !== 0));
+
+ Expect.isFalse(double.NAN !== 0);
+ Expect.isFalse(!(double.NAN === 0));
+
+ Expect.isFalse(0 >= double.NAN);
+ Expect.isTrue(!(0 < double.NAN));
+
+ Expect.isFalse(0 <= double.NAN);
+ Expect.isTrue(!(0 > double.NAN));
+
+ Expect.isFalse(0 < double.NAN);
+ Expect.isTrue(!(0 >= double.NAN));
+
+ Expect.isFalse(0 > double.NAN);
+ Expect.isTrue(!(0 <= double.NAN));
+
+ Expect.isFalse(0 == double.NAN);
+ Expect.isTrue(!(0 != double.NAN));
+
+ Expect.isFalse(0 != double.NAN);
+ Expect.isTrue(!(0 == double.NAN));
+
+ Expect.isFalse(0 === double.NAN);
+ Expect.isFalse(!(0 !== double.NAN));
+
+ Expect.isFalse(0 !== double.NAN);
+ Expect.isFalse(!(0 === double.NAN));
+}
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698