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