2016-04-20 09:34:22 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2016-08-23 04:06:52 +00:00
|
|
|
// Flags: --allow-natives-syntax --validate-asm
|
2016-04-20 09:34:22 +00:00
|
|
|
|
|
|
|
function __f_7() {
|
|
|
|
%DeoptimizeFunction(__f_5);
|
|
|
|
}
|
|
|
|
function __f_8(global, env) {
|
|
|
|
"use asm";
|
|
|
|
var __f_7 = env.__f_7;
|
|
|
|
function __f_9(i4, i5) {
|
|
|
|
i4 = i4 | 0;
|
|
|
|
i5 = i5 | 0;
|
|
|
|
__f_7();
|
|
|
|
}
|
2017-03-30 08:49:14 +00:00
|
|
|
return {__f_9: __f_9}
|
2016-04-20 09:34:22 +00:00
|
|
|
}
|
|
|
|
function __f_5() {
|
2016-08-23 04:06:52 +00:00
|
|
|
var __v_5 = __f_8({}, {'__f_7': __f_7});
|
|
|
|
assertTrue(%IsAsmWasmCode(__f_8));
|
2016-04-20 09:34:22 +00:00
|
|
|
__v_5.__f_9(0, 0, 0);
|
|
|
|
}
|
|
|
|
__f_5();
|