summaryrefslogtreecommitdiffstats
path: root/source/slang
diff options
context:
space:
mode:
authorTim Foley <tfoley@nvidia.com>2017-09-25 08:42:37 -0700
committerTim Foley <tfoley@nvidia.com>2017-09-25 08:42:37 -0700
commit4ea0c261bb73433995951d332b1c0039eb3ee472 (patch)
tree2e8721f5aa80d8175b05ca84741af4d2f7bc9539 /source/slang
parent1972fa3616af55c223096e9b11465f580530d88f (diff)
Fixup: typo in `core` library meta-code
This seems to be a case where I edited the generated output file, which meant that its timestamp was newer than the input and it didn't trigger a rebuild, so I didn't notice the problem until the change went into CI (which did a fresh build).
Diffstat (limited to 'source/slang')
-rw-r--r--source/slang/core.meta.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/core.meta.slang b/source/slang/core.meta.slang
index d7f306096..2e200f63a 100644
--- a/source/slang/core.meta.slang
+++ b/source/slang/core.meta.slang
@@ -94,7 +94,7 @@ sb << " typedef T Element;\n";
// Declare initializer taking a single scalar of the elemnt type
sb << " __implicit_conversion(" << kConversionCost_ScalarToVector << ")\n";
-sb << " __intrinsic_op(" << kIROp_constructorVectorFromScalar << ")\n";
+sb << " __intrinsic_op(" << kIROp_constructVectorFromScalar << ")\n";
sb << " __init(T value);\n";
sb << "};\n";