summaryrefslogtreecommitdiff
path: root/source/slang/ir-specialize.h
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2019-01-28 14:21:21 -0800
committerGitHub <noreply@github.com>2019-01-28 14:21:21 -0800
commitadb3e222393a780de41f258bd273fa3231db10c0 (patch)
tree1d39bbf22e31dbc0e1d3861258dbcbbeb0dc3bc6 /source/slang/ir-specialize.h
parent3b9573af2c1c898eb8c5b98b6d29cd3889579a51 (diff)
parent3c3513ab501277333d1062ad2737ac4a60dac6f7 (diff)
Merge branch 'master' into yong-fix2
Diffstat (limited to 'source/slang/ir-specialize.h')
-rw-r--r--source/slang/ir-specialize.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/slang/ir-specialize.h b/source/slang/ir-specialize.h
index dc1f07481..0b53d28eb 100644
--- a/source/slang/ir-specialize.h
+++ b/source/slang/ir-specialize.h
@@ -5,9 +5,8 @@ namespace Slang
{
struct IRModule;
-// Find suitable uses of the `specialize` instruction that
-// can be replaced with references to specialized functions.
-void specializeGenerics(
+ /// Specialize generic and interface-based code to use concrete types.
+void specializeModule(
IRModule* module);
}