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

Side by Side Diff: test/mjsunit/regress/regress-590074.js

Issue 1775083002: [turbofan] Fix register constraint for memory barrier. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix other platforms, too Created 4 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.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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: --allow-natives-syntax --expose-gc
6
7 var __v_5 = {};
8
9 function __f_10() {
10 var __v_2 = [0, 0, 0];
11 __v_2[0] = 0;
12 gc();
13 return __v_2;
14 }
15
16 function __f_2(array) {
17 array[1] = undefined;
18 }
19
20 function __f_9() {
21 var __v_4 = __f_10();
22 __f_2(__f_10());
23 __v_5 = __f_10();
24 __v_4 = __f_10();
25 __f_2(__v_5);
26 }
27 __f_9();
28 %OptimizeFunctionOnNextCall(__f_9);
29 __f_9();
OLDNEW
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698