blob: ea3984d8bbfea047b7ac4f5cb732a8dab9bcdef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// slang-ir-strip-default-construct.h
#pragma once
namespace Slang
{
struct IRModule;
/// Strip the contents of all witness table instructions from the given IR `module`
void removeRawDefaultConstructors(IRModule* module);
} // namespace Slang
|