2013-03-27 09:58:32 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
2018-06-14 15:06:48 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-03-27 09:58:32 +00:00
|
|
|
|
2018-06-14 15:06:48 +00:00
|
|
|
// Flags: --noanalyze-environment-liveness --allow-natives-syntax
|
2013-03-27 09:58:32 +00:00
|
|
|
|
|
|
|
var r = /r/;
|
|
|
|
function f() {
|
2013-07-02 15:15:58 +00:00
|
|
|
r[r] = function() {};
|
2013-03-27 09:58:32 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 15:06:48 +00:00
|
|
|
for (var i = 0; i < 300; i++) {
|
2013-07-02 15:15:58 +00:00
|
|
|
f();
|
2018-06-14 15:06:48 +00:00
|
|
|
if (i == 150) %OptimizeOsr();
|
2013-07-02 15:15:58 +00:00
|
|
|
}
|