blob: e872401c0bba58885b691a358ea2f447e4d1c9ea [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// Copyright 2016 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 --turbo-type-feedback
6
7function f(x) {
8 var s = x ? "0" : "1";
9 return 1 + Number(s);
10}
11
12f(0);
13f(0);
14%OptimizeFunctionOnNextCall(f);
15assertEquals(2, f(0));