summaryrefslogtreecommitdiff
path: root/source/slang/ir-existential.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/ir-existential.h')
-rw-r--r--source/slang/ir-existential.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/slang/ir-existential.h b/source/slang/ir-existential.h
new file mode 100644
index 000000000..2bc94c7b1
--- /dev/null
+++ b/source/slang/ir-existential.h
@@ -0,0 +1,12 @@
+// ir-existential.h
+#pragma once
+
+namespace Slang
+{
+ struct IRModule;
+
+ /// Simplify code that makes use of existential types.
+ void simplifyExistentialTypes(
+ IRModule* module);
+}
+