blob: b7794f52f06081f1d047638ef42364a619a6c863 [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
7var foo = 0;
8
9function bar() {
10 var baz = 0 - {};
11 if (foo > 24) return baz * 0;
12}
13
14bar();
15bar();
16%OptimizeFunctionOnNextCall(bar);
17bar();