blob: 0a1481c571a0a8ec20e9ed3ff65bbd7a4f44aece [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 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
6
7function deopt() {
8 %DeoptimizeFunction(fun3);
9}
10
11function fun3() {
12 var r = { 113: deopt(), 113: 7 };
13 return r[113];
14}
15
16fun3();
17fun3();
18%OptimizeFunctionOnNextCall(fun3);
19var y = fun3();
20assertEquals(7, y);