diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-02-07 19:01:24 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-02-07 19:01:24 +0000 |
commit | 953a61f26bf79932b9699b09add4c388764de170 (patch) | |
tree | 2afb54515a5a8c129a0f985e8ef4568bee1e00cb /test/Modules/compiler_builtins.m | |
parent | ed4330bc159b8311080d03caacac9a8cbf42370c (diff) |
Rename -fmodule-cache-path <blah> to -fmodules-cache-path=<blah> for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/compiler_builtins.m')
-rw-r--r-- | test/Modules/compiler_builtins.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Modules/compiler_builtins.m b/test/Modules/compiler_builtins.m index 192dd0f3ed..5ea7d795c7 100644 --- a/test/Modules/compiler_builtins.m +++ b/test/Modules/compiler_builtins.m @@ -1,6 +1,6 @@ // RUN: rm -rf %t -// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t -D__need_wint_t %s -Xclang -verify -// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodule-cache-path %t -D__need_wint_t %s -Xclang -verify +// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify +// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify // expected-no-diagnostics // XFAIL: win32 |