diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-07-26 16:01:23 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-07-26 16:01:23 +0000 |
commit | e34a052d642ba7830174b1a51787251d7f704f80 (patch) | |
tree | 71c76fe49f288ddb5986ad1d8c3abe33a92e3f03 /include/clang/Frontend/FrontendOptions.h | |
parent | bae11d8f82378f3b5ffcc994d8b107c9fbec6c4e (diff) |
Added -ast-dump-filter option to clang -cc1.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendOptions.h')
-rw-r--r-- | include/clang/Frontend/FrontendOptions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h index 22cce9cc37..5d674caca5 100644 --- a/include/clang/Frontend/FrontendOptions.h +++ b/include/clang/Frontend/FrontendOptions.h @@ -141,6 +141,9 @@ public: /// If given, the new suffix for fix-it rewritten files. std::string FixItSuffix; + /// If given, filter dumped AST Decl nodes by this substring. + std::string ASTDumpFilter; + /// If given, enable code completion at the provided location. ParsedSourceLocation CodeCompletionAt; |