diff options
author | Daniel Jasper <djasper@google.com> | 2013-09-29 12:40:54 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-09-29 12:40:54 +0000 |
commit | 6e16d54266e8f440f3cdadf814744efdac88efa8 (patch) | |
tree | bf613a174dfbae0fb1780052b72e570e6256857c | |
parent | 0b1f76b658ec6966a67164dc8c7c55a8960b1917 (diff) | |
download | bcm5719-llvm-6e16d54266e8f440f3cdadf814744efdac88efa8.tar.gz bcm5719-llvm-6e16d54266e8f440f3cdadf814744efdac88efa8.zip |
Fix misspelling of -fmodules-decluse.
llvm-svn: 191640
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 322fe5a898d..dd48bc18e81 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -3034,11 +3034,11 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, CmdArgs.push_back("-fmodule-maps"); } - // -fmodule-decluse checks that modules used are declared so (off by default). + // -fmodules-decluse checks that modules used are declared so (off by default). if (Args.hasFlag(options::OPT_fmodules_decluse, options::OPT_fno_modules_decluse, false)) { - CmdArgs.push_back("-fmodule-decluse"); + CmdArgs.push_back("-fmodules-decluse"); } // If a module path was provided, pass it along. Otherwise, use a temporary |