[llvm-bugs] [Bug 35989] New: dump_ast_matchers.py completely ignores short matchers

via llvm-bugs llvm-bugs at lists.llvm.org
Wed Jan 17 10:54:22 PST 2018


https://bugs.llvm.org/show_bug.cgi?id=35989

            Bug ID: 35989
           Summary: dump_ast_matchers.py completely ignores short matchers
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Documentation
          Assignee: unassignedclangbugs at nondot.org
          Reporter: lebedev.ri at gmail.com
                CC: llvm-bugs at lists.llvm.org

E.g. it is fine with

AST_MATCHER(FunctionDecl, isNoReturn) {
  return Node.isNoReturn();
}


but not with

AST_MATCHER(FunctionDecl, isNoReturn) { return Node.isNoReturn(); }

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20180117/710d19ef/attachment.html>


More information about the llvm-bugs mailing list