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

Side by Side Diff: test/mjsunit/regress/regress-crbug-683581.js

Issue 2651653005: [turbofan] Fix accumulator use in bytecode analysis. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 var v = 0;
6 function foo() {
7 for (var i = 0; i < 70000; i++) {
8 v += i;
9 }
10 eval();
11 }
12 foo()
13 assertEquals(2449965000, v);
OLDNEW
« src/compiler/bytecode-analysis.cc ('K') | « src/compiler/bytecode-analysis.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698