blob: f2909675b2424c68c83fcf0b0f891467fcce851c [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 f(x) {
8 var c = x * x << 366;
9 var a = c + c;
10 return a;
11}
12
13f(1);
14f(1);
15%OptimizeFunctionOnNextCall(f);
16f(1);