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

Unified Diff: tests/compiler/dart2js/backend_dart/opt_constprop_test.dart

Issue 864293004: Add a shrinking reduction for dead continuation parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporated review comments. Created 5 years, 11 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
Index: tests/compiler/dart2js/backend_dart/opt_constprop_test.dart
diff --git a/tests/compiler/dart2js/backend_dart/opt_constprop_test.dart b/tests/compiler/dart2js/backend_dart/opt_constprop_test.dart
index 7e302df4d07e6a016e34d341f86078a215b85d62..4c8127c49695a02f5c1e3ceb81b28c37f7d640b0 100644
--- a/tests/compiler/dart2js/backend_dart/opt_constprop_test.dart
+++ b/tests/compiler/dart2js/backend_dart/opt_constprop_test.dart
@@ -100,7 +100,7 @@ String CP2_IN = """
((k7 ()
(InvokeContinuation return (v0)))
(k8 ()
- (InvokeContinuation* k0 ())))
+ (InvokeContinuation rec k0 ())))
(Branch (IsTrue v5) k7 k8))))
(LetCont
((k9 ()
@@ -164,7 +164,7 @@ String CP2_OUT = """
((k7 ()
(InvokeContinuation return (v0)))
(k8 ()
- (InvokeContinuation* k0 ())))
+ (InvokeContinuation rec k0 ())))
(InvokeContinuation k7 ()))))
(LetCont
((k9 ()
@@ -389,7 +389,7 @@ String CP9_IN = """
(LetPrim (v6 (Constant (Int 1)))
(LetCont
((k7 (v7)
- (InvokeContinuation* k0 (v7))))
+ (InvokeContinuation rec k0 (v7))))
(InvokeMethod v1 + (v6) k7)))))
(Branch (IsTrue v4) k5 k6))))
(LetCont
@@ -427,7 +427,7 @@ String CP9_OUT = """
(LetPrim (v6 (Constant (Int 1)))
(LetCont
((k7 (v7)
- (InvokeContinuation* k0 (v7))))
+ (InvokeContinuation rec k0 (v7))))
(InvokeMethod v1 + (v6) k7)))))
(Branch (IsTrue v4) k5 k6))))
(LetCont
@@ -470,7 +470,7 @@ String CP10_IN = """
(LetPrim (v6 (Constant (Int 1)))
(LetCont
((k5 (v7)
- (InvokeContinuation* k0 (v7))))
+ (InvokeContinuation rec k0 (v7))))
(InvokeMethod v1 + (v6) k5)))))
(InvokeStatic print (v4) k4))))
(InvokeMethod v3 + (v1) k3)))))
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart ('k') | tests/compiler/dart2js/backend_dart/opt_redundant_phi_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698