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

Side by Side Diff: tests/language/critical_edge_test.dart

Issue 331343004: Avoid critical edge for loop-exits. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove bad comment. Created 6 years, 6 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
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
5 // This test broke dart2js.
6 // A compiler must not construct a critical edge on this program.
7
8 import "package:expect/expect.dart";
9
10 String parse(String uri) {
11 int index = 0;
12 int char = -1;
13
14 void parseAuth() {
15 index;
16 char;
17 }
18
19 int state = 0;
20 while (true) {
ngeoffray 2014/06/24 12:39:14 Seems like the "true" is the only difference. Is i
floitsch 2014/06/24 14:44:38 It also uses more variables after the loop. This l
21 char = uri.codeUnitAt(index);
22 if (char == 1234) {
23 state = (index == 0) ? 1 : 2;
24 break;
25 }
26 if (char == 0x3A) {
27 return "good";
28 }
29 index++;
30 }
31
32 if (state == 1) {
33 print(char == 1234);
34 print(index == uri.length);
35 }
36 return "bad";
37 }
38
39 main() {
40 Expect.equals("good", parse("dart:_foreign_helper"));
41 }
OLDNEW
« tests/language/critical_edge2_test.dart ('K') | « tests/language/critical_edge2_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698