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

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

Issue 184393002: Fix representation generalization for doubles. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/property-details.h ('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
1 // Copyright 2014 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
Toon Verwaest 2014/02/28 10:59:15 Flags: --allow-natives-syntax
Hannes Payer (out of office) 2014/02/28 11:06:52 Done.
5 // Flags: --expose-gc 5 a = {y:1.5};
Toon Verwaest 2014/02/28 10:59:15 var a =, var b =, var d =
Hannes Payer (out of office) 2014/02/28 11:06:52 Done.
6 a = []; 6 a.y = 0;
7 a[1000] = .1; 7 b = a.y;
8 a.length = 0; 8 a.y= {};
Toon Verwaest 2014/02/28 10:59:15 add space after a.y
Hannes Payer (out of office) 2014/02/28 11:06:52 Done.
9 gc(); 9 d = 1;
10 gc(); 10 function f() {
11 a[1000] = .1; 11 d = 0;
12 assertEquals(.1, a[1000]); 12 return {y: b};
13 }
14 f();
15 f();
16 %OptimizeFunctionOnNextCall(f);
17 f();
OLDNEW
« no previous file with comments | « src/property-details.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698