summaryrefslogtreecommitdiff
path: root/source/slang/slang-ir-lower-tuple-types.h
blob: 88c737a914d65f6d53e79734b4efcf9c18fe778c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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);

}