[clang] [clang-tools-extra] [llvm] Add ``ignoringParenImpCasts`` in arguments of hasArgument (PR #89553)

Julian Schmidt via llvm-commits llvm-commits at lists.llvm.org
Wed May 1 12:23:42 PDT 2024


================
@@ -49,7 +49,8 @@ void UpgradeDurationConversionsCheck::registerMatchers(MatchFinder *Finder) {
               hasParent(functionTemplateDecl()),
               unless(hasTemplateArgument(0, refersToType(builtinType()))),
               hasAnyName("operator*=", "operator/="))),
-          argumentCountIs(1), hasArgument(0, expr().bind("arg")))
+          argumentCountIs(1),
+          hasArgument(0, ignoringParenImpCasts(expr().bind("arg"))))
----------------
5chmidti wrote:

This change is not needed, the check does not if implicit nodes are ignored or not, so we don't need to do the extra work.

https://github.com/llvm/llvm-project/pull/89553


More information about the llvm-commits mailing list