blob: e671328769edfdac1ed8479e847cc75957a08e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// slang-ir-lower-tuple-types.h
#pragma once
#include "slang-ir.h"
namespace Slang
{
struct IRModule;
class DiagnosticSink;
/// Lower tuple types to ordinary `struct`s.
void lowerTuples(IRModule* module, DiagnosticSink* sink);
} // namespace Slang
|