blob: 73ae61f75a7dd6f8a015fae723c408f4ee378aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// slang-ir-lower-existential.h
#pragma once
namespace Slang
{
struct SharedGenericsLoweringContext;
/// Lower existential types and related instructions to Tuple types.
void lowerExistentials(SharedGenericsLoweringContext* sharedContext);
} // namespace Slang
|