diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-27 00:03:05 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-27 00:03:05 +0000 |
commit | 831c6313dfa36f297094cd593a9dd3cb60649362 (patch) | |
tree | 1de2cea7012283cfed0c0d4ef53c4fb7318eff25 /include | |
parent | 484e2b195605cfe92b79b3baf9ea070666f8b332 (diff) |
Remove the -import-module option. It's no longer useful
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Driver/CC1Options.td | 3 | ||||
-rw-r--r-- | include/clang/Frontend/FrontendOptions.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/include/clang/Driver/CC1Options.td b/include/clang/Driver/CC1Options.td index 258c725376..32de34c82f 100644 --- a/include/clang/Driver/CC1Options.td +++ b/include/clang/Driver/CC1Options.td @@ -404,9 +404,6 @@ def arcmt_migrate_report_output : Separate<"-arcmt-migrate-report-output">, def arcmt_migrate_emit_arc_errors : Flag<"-arcmt-migrate-emit-errors">, HelpText<"Emit ARC errors even if the migrator can fix them">; -def import_module : Separate<"-import-module">, - HelpText<"Import a module definition file">; - def working_directory : JoinedOrSeparate<"-working-directory">, HelpText<"Resolve file paths relative to the specified directory">; def working_directory_EQ : Joined<"-working-directory=">, diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h index ec75b59c4e..4876ceb73f 100644 --- a/include/clang/Frontend/FrontendOptions.h +++ b/include/clang/Frontend/FrontendOptions.h @@ -119,9 +119,6 @@ public: /// \brief The list of AST files to merge. std::vector<std::string> ASTMergeFiles; - /// \brief The list of modules to import. - std::vector<std::string> Modules; - /// \brief A list of arguments to forward to LLVM's option processing; this /// should only be used for debugging and experimental features. std::vector<std::string> LLVMArgs; |