summaryrefslogtreecommitdiffstats
path: root/source/slang/ir-constexpr.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/ir-constexpr.h')
-rw-r--r--source/slang/ir-constexpr.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/slang/ir-constexpr.h b/source/slang/ir-constexpr.h
new file mode 100644
index 000000000..04f2e59ec
--- /dev/null
+++ b/source/slang/ir-constexpr.h
@@ -0,0 +1,12 @@
+// ir-constexpr.h
+#pragma once
+
+namespace Slang
+{
+ class DiagnosticSink;
+ struct IRModule;
+
+ void propagateConstExpr(
+ IRModule* module,
+ DiagnosticSink* sink);
+}