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

Unified Diff: tests/language/src/BitOperationsTest.dart

Issue 8972002: Use deopt on some instructions that have not collected type feedback when optimizing compierl kic... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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
Index: tests/language/src/BitOperationsTest.dart
===================================================================
--- tests/language/src/BitOperationsTest.dart (revision 2475)
+++ tests/language/src/BitOperationsTest.dart (working copy)
@@ -5,6 +5,11 @@
class BitOperationsTest {
static testMain() {
+ for (int i = 0; i < 4; i++) {
+ testOne();
+ }
+ }
+ static testOne() {
Expect.equals(3, (3 & 7));
Expect.equals(7, (3 | 7));
Expect.equals(4, (3 ^ 7));

Powered by Google App Engine
This is Rietveld 408576698