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: unassignedclangb...@nondot.org
          Reporter: lebedev...@gmail.com
                CC: llvm-bugs@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.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to