blob: 1fcbaebd83a2caff31f76b02d895d6c16da28ce9 [file] [log] [blame]
Ben Murdochda12d292016-06-02 14:46:10 +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 --harmony-tailcalls
6
7"use strict";
8
9%SetForceInlineFlag(Math.cos);
10
11var f5 = (function f6(stdlib) {
12 "use asm";
13 var cos = stdlib.Math.cos;
14 function f5() {
15 return cos();
16 }
17 return { f5: f5 };
18})(this, {}).f5();