v8/test/mjsunit/regress/regress-captured-object-no-dummy-use.js
jarin@chromium.org 42d2d3cb9d Do not generate LDummyUse instruction for HCapturedObject
LDummyUse confuses the register allocator (since there is no definition
for the use).

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/222283002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20461 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-04-03 07:35:13 +00:00

19 lines
398 B
JavaScript

// Copyright 2014 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
var global = "10.1";
function f() { }
function g(a) { this.d = a; }
function h() {
var x = new f();
global.dummy = this;
var y = new g(x);
}
h();
h();
%OptimizeFunctionOnNextCall(h);
h();