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

Unified Diff: test/mjsunit/immutable-context-slot-inlining.js

Issue 2680923003: Revert of Thread maybe-assigned through the bytecodes. (Closed)
Patch Set: Created 3 years, 10 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: test/mjsunit/immutable-context-slot-inlining.js
diff --git a/test/mjsunit/immutable-context-slot-inlining.js b/test/mjsunit/immutable-context-slot-inlining.js
deleted file mode 100644
index 3b278c3c255c0d002f347d8b1c811336c653b32e..0000000000000000000000000000000000000000
--- a/test/mjsunit/immutable-context-slot-inlining.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2017 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --allow-natives-syntax
-
-function h(g) {
- return g();
-}
-
-function f() {
- var g;
- for (var i = 0; i < 10; i++) {
- var y = i;
- if (i === 5) {
- g = function() {
- return y;
- };
- assertEquals(5, h(g));
- assertEquals(5, h(g));
- %OptimizeFunctionOnNextCall(h);
- assertEquals(5, h(g));
- }
- }
- return g;
-}
-
-var myg = f();
-
-assertEquals(9, h(myg));

Powered by Google App Engine
This is Rietveld 408576698