summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-ir-ssa.h
blob: e995af260ee58b871379f24d78049679105e4eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// slang-ir-ssa.h
#pragma once

namespace Slang
{
struct IRModule;
struct IRGlobalValueWithCode;
struct IRInst;

bool constructSSA(IRModule* module, IRGlobalValueWithCode* globalVal);
bool constructSSA(IRModule* module);
bool constructSSA(IRInst* globalVal);
} // namespace Slang