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

Side by Side Diff: tests/language/vm/if_conversion_vm_test.dart

Issue 23103010: Add issue numbers to language tests status files (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Test if-convertion pass in the optimizing compiler. 5 // Test if-convertion pass in the optimizing compiler.
6 // VMOptions=--optimization-counter-threshold=10 --no-use-osr 6 // VMOptions=--optimization-counter-threshold=10 --no-use-osr
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 f1(i) => (i == 0) ? 0 : 1; 10 f1(i) => (i == 0) ? 0 : 1;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 Expect.equals(2, cse(0)); 106 Expect.equals(2, cse(0));
107 Expect.equals(4, cse(1)); 107 Expect.equals(4, cse(1));
108 108
109 Expect.equals(11, f17(false)); 109 Expect.equals(11, f17(false));
110 Expect.equals(0, f17(true)); 110 Expect.equals(0, f17(true));
111 111
112 Expect.equals(0, f18(false)); 112 Expect.equals(0, f18(false));
113 Expect.equals(2, f18(true)); 113 Expect.equals(2, f18(true));
114 } 114 }
OLDNEW
« no previous file with comments | « tests/language/vm/deopt_hoisted_smi_check_vm_test.dart ('k') | tests/language/vm/issue11087_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698