[PATCH] D120952: [clang][AST matchers] adding submatchers under cudaKernelCallExpr to match kernel launch config
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 31 04:08:11 PDT 2022
aaron.ballman added a comment.
Thanks! This is missing test coverage for the new matcher, and you should also add a release note for it.
================
Comment at: clang/include/clang/ASTMatchers/ASTMatchers.h:7837-7839
+ if (const CallExpr *Config = Node.getConfig()) {
+ return InnerMatcher.matches(*Config, Finder, Builder);
+ }
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120952/new/
https://reviews.llvm.org/D120952
More information about the cfe-commits
mailing list