[clang-tools-extra] e7080aa - [clang-query] Fix help text after D91918
Nathan James via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 3 07:58:00 PST 2021
Author: Nathan James
Date: 2021-03-03T15:57:49Z
New Revision: e7080aa2253356effed6c381313a93ec2420b44a
URL: https://github.com/llvm/llvm-project/commit/e7080aa2253356effed6c381313a93ec2420b44a
DIFF: https://github.com/llvm/llvm-project/commit/e7080aa2253356effed6c381313a93ec2420b44a.diff
LOG: [clang-query] Fix help text after D91918
After rG5e1801813d93210acae84ff3c68a01512c2df9bc The help command still lists IgnoreImplicitCastsAndParentheses as a valid option.
Reviewed By: aaron.ballman, rsmith
Differential Revision: https://reviews.llvm.org/D97806
Added:
Modified:
clang-tools-extra/clang-query/Query.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clang-query/Query.cpp b/clang-tools-extra/clang-query/Query.cpp
index e33612a2e16d..5cf24dbb58a7 100644
--- a/clang-tools-extra/clang-query/Query.cpp
+++ b/clang-tools-extra/clang-query/Query.cpp
@@ -48,8 +48,6 @@ bool HelpQuery::run(llvm::raw_ostream &OS, QuerySession &QS) const {
" AsIs "
"Print and match the AST as clang sees it. This mode is the "
"default.\n"
- " IgnoreImplicitCastsAndParentheses "
- "Omit implicit casts and parens in matching and dumping.\n"
" IgnoreUnlessSpelledInSource "
"Omit AST nodes unless spelled in the source.\n"
" set output <feature> "
More information about the cfe-commits
mailing list