Side by Side Diff: test/mjsunit/regress/regress-351257.js
Issue 199973004:
Continued fix for 351257. Reusing the feedback vector is too complex. (Closed)
Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE.
Created 6 years, 9 months ago
Use n/p to move between diff chunks;
N/P to move between comments.
Draft comments are only viewable by you.
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --stress-opt --always-opt
6
7 function foo(x) { return x; }
8 function container() {
9 x = 0;
10 eval('"use strict"; var x = 9;');
11 (function() {
12 "use strict";
13 foo(x);
14 })();
15 }
16
17 container();
OLD
NEW
« no previous file with comments
|
« test/cctest/test-heap.cc ('k')
|
no next file »
|
no next file with comments »
Issue 199973004: Continued fix for 351257. Reusing the feedback vector is too complex.
(Closed)
Created 6 years, 9 months ago by mvstanton
Modified 6 years, 9 months ago
Reviewers: bmeuer_chromium.org, Benedikt Meurer, Toon Verwaest
Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Comments: 1