blob: ec51bba2b24a74dc50857d93e071b38f91b8320b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef SLANG_IR_INSERT_DEBUG_VALUE_STORE_H
#define SLANG_IR_INSERT_DEBUG_VALUE_STORE_H
namespace Slang
{
struct IRModule;
void insertDebugValueStore(IRModule* module);
}
#endif // SLANG_IR_INSERT_DEBUG_VALUE_STORE_H
|