aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/FrontendAction.h
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2011-01-25 20:34:14 +0000
committerNico Weber <nicolasweber@gmx.de>2011-01-25 20:34:14 +0000
commit5aa74affa5d61d04c4b034b3722ca41aec0cba6e (patch)
treea7d535bc8a361a750f92e4373b84bfe47a72df26 /include/clang/Frontend/FrontendAction.h
parentc60e13aeff96515d27638129154b1308c15ded3d (diff)
Add -add-plugin flag, which runs plugins in addition to codegen.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendAction.h')
-rw-r--r--include/clang/Frontend/FrontendAction.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/FrontendAction.h b/include/clang/Frontend/FrontendAction.h
index e3551d7749..ee0863a477 100644
--- a/include/clang/Frontend/FrontendAction.h
+++ b/include/clang/Frontend/FrontendAction.h
@@ -52,6 +52,10 @@ class FrontendAction {
CompilerInstance *Instance;
friend class ASTMergeAction;
+private:
+ ASTConsumer* CreateWrappedASTConsumer(CompilerInstance &CI,
+ llvm::StringRef InFile);
+
protected:
/// @name Implementation Action Interface
/// @{