summaryrefslogtreecommitdiff
path: root/source/slang/slang-check-modifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-check-modifier.cpp')
-rw-r--r--source/slang/slang-check-modifier.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/source/slang/slang-check-modifier.cpp b/source/slang/slang-check-modifier.cpp
index 520d85971..e6a524645 100644
--- a/source/slang/slang-check-modifier.cpp
+++ b/source/slang/slang-check-modifier.cpp
@@ -680,16 +680,7 @@ namespace Slang
{
SLANG_ASSERT(attr->args.getCount() == 1);
SLANG_ASSERT(as<Decl>(attrTarget));
-
- // Ensure that the argument is a reference to a function definition or declaration.
- auto primalFunc = CheckTerm(attr->args[0]);
- if (primalFunc->type == getASTBuilder()->getErrorType())
- {
- // Could not resolve the term.
- getSink()->diagnose(primalFunc, Slang::Diagnostics::invalidCustomDerivative, as<Decl>(attrTarget));
- return false;
- }
- derivativeOfAttr->funcExpr = primalFunc;
+ derivativeOfAttr->funcExpr = attr->args[0];
}
else if (auto comInterfaceAttr = as<ComInterfaceAttribute>(attr))
{