blob: ec1ef80f264752581bf1d1666bbcb29893cf11d6 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#ifdef ASMJS_PLAT
namespace OpCodeAttrAsmJs
{
// False if the opcode results in jump to end of the function and there cannot be fallthrough.
bool HasFallThrough(Js::OpCodeAsmJs opcode);
// True if the opcode has a small/large layout
bool HasMultiSizeLayout(Js::OpCodeAsmJs opcode);
};
#endif