diff options
author | Nico Weber <nicolasweber@gmx.de> | 2011-01-29 21:21:49 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2011-01-29 21:21:49 +0000 |
commit | f25649c74397d2620e6ac61f1045261644707c80 (patch) | |
tree | b333fb4c110a13b54d3922ac5deb87db388e7cd5 /include/clang/Frontend/FrontendOptions.h | |
parent | c7e98fabd852e9dfa7409b7fc664b87322522c43 (diff) |
Support for -plugin-arg- with -add-plugin
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendOptions.h')
-rw-r--r-- | include/clang/Frontend/FrontendOptions.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h index fe953a4595..f19914ecd7 100644 --- a/include/clang/Frontend/FrontendOptions.h +++ b/include/clang/Frontend/FrontendOptions.h @@ -100,12 +100,15 @@ public: /// The name of the action to run when using a plugin action. std::string ActionName; - /// Arg to pass to the plugin + /// Args to pass to the plugin std::vector<std::string> PluginArgs; /// The list of plugin actions to run in addition to the normal action. std::vector<std::string> AddPluginActions; + /// Args to pass to the additional plugins + std::vector<std::vector<std::string> > AddPluginArgs; + /// The list of plugins to load. std::vector<std::string> Plugins; |