luau/CodeGen/include/Luau/OptimizeConstProp.h

17 lines
305 B
C
Raw Normal View History

2023-02-25 02:24:22 +08:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
#include "Luau/IrData.h"
namespace Luau
{
namespace CodeGen
{
struct IrBuilder;
void constPropInBlockChains(IrBuilder& build);
} // namespace CodeGen
} // namespace Luau