blob: b8e4f3520995a8bb53688b2101ce1b6f055827b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// slang-ir-cleanup-void.h
#pragma once
#include "slang-ir.h"
namespace Slang
{
struct IRModule;
class DiagnosticSink;
/// Cleanup all uses of void and void types.
void cleanUpVoidType(IRModule* module);
} // namespace Slang
|