aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2013-02-07 19:01:24 +0000
committerDouglas Gregor <dgregor@apple.com>2013-02-07 19:01:24 +0000
commit35b04d6fd256f284ff46bfcb69de214aaf93f957 (patch)
tree221b25916b4004e032a051bea4d58cb8f84ad7e2 /clang/lib/Frontend/CompilerInvocation.cpp
parenteb849c6bd5cd39369ba7078c03447b371d73db71 (diff)
downloadllvm-35b04d6fd256f284ff46bfcb69de214aaf93f957.zip
llvm-35b04d6fd256f284ff46bfcb69de214aaf93f957.tar.gz
llvm-35b04d6fd256f284ff46bfcb69de214aaf93f957.tar.bz2
Rename -fmodule-cache-path <blah> to -fmodules-cache-path=<blah> for consistency.
llvm-svn: 174645
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index 0e313a9..f4bf4b7 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -811,7 +811,7 @@ static void ParseHeaderSearchArgs(HeaderSearchOptions &Opts, ArgList &Args) {
if (const Arg *A = Args.getLastArg(OPT_stdlib_EQ))
Opts.UseLibcxx = (strcmp(A->getValue(), "libc++") == 0);
Opts.ResourceDir = Args.getLastArgValue(OPT_resource_dir);
- Opts.ModuleCachePath = Args.getLastArgValue(OPT_fmodule_cache_path);
+ Opts.ModuleCachePath = Args.getLastArgValue(OPT_fmodules_cache_path);
Opts.DisableModuleHash = Args.hasArg(OPT_fdisable_module_hash);
for (arg_iterator it = Args.filtered_begin(OPT_fmodules_ignore_macro),