blob: 37a465bcbe1445184e458f4f1a072d49fdb43f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// slang-ir-lower-enum-type.h
#pragma once
#include "slang-ir.h"
namespace Slang
{
struct IRModule;
class DiagnosticSink;
/// Lower `IREnumType` to their underlying integer types.
void lowerEnumType(IRModule* module, DiagnosticSink* sink);
} // namespace Slang
|