luau/CodeGen/include/Luau/IrAnalysis.h

17 lines
329 B
C
Raw Normal View History

2023-01-27 21:28:45 +00:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
namespace Luau
{
namespace CodeGen
{
struct IrFunction;
2023-02-10 18:50:54 +00:00
void updateUseCounts(IrFunction& function);
void updateLastUseLocations(IrFunction& function);
2023-01-27 21:28:45 +00:00
} // namespace CodeGen
} // namespace Luau