summaryrefslogtreecommitdiff
path: root/source/slang/ir-existential.h
blob: 2bc94c7b146aea9024da345a87b0c7975157cacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ir-existential.h
#pragma once

namespace Slang
{
    struct IRModule;

        /// Simplify code that makes use of existential types.
    void simplifyExistentialTypes(
        IRModule*   module);
}