1// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details 2#pragma once 3 4#include "Luau/IrData.h" 5 6namespace Luau 7{ 8namespace CodeGen 9{ 10 11struct IrBuilder; 12 13void constPropInBlockChains(IrBuilder& build); 14void createLinearBlocks(IrBuilder& build); 15 16} // namespace CodeGen 17} // namespace Luau 18 19