diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-03 15:21:29 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-03 15:21:29 +0000 |
commit | 2f197adeeb9765fb23a2da7b38da664c4e82276a (patch) | |
tree | b58a2c5053c3c02e0de16db98bc5def7a40abb1a /clang/test/Modules/normal-module-map.cpp | |
parent | a3e8b00f757d7ebb61a8416e0806ad6dc24afbe1 (diff) | |
download | bcm5719-llvm-2f197adeeb9765fb23a2da7b38da664c4e82276a.tar.gz bcm5719-llvm-2f197adeeb9765fb23a2da7b38da664c4e82276a.zip |
Rename the command-line option for mapping #include/#import over to
module imports from -fauto-module-import to -fmodules. The new name
will eventually be used to enable modules, and the #include/#import
mapping is a crucial part of the feature.
llvm-svn: 147447
Diffstat (limited to 'clang/test/Modules/normal-module-map.cpp')
-rw-r--r-- | clang/test/Modules/normal-module-map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/normal-module-map.cpp b/clang/test/Modules/normal-module-map.cpp index 6aab1cb9813..4d2f59a7ca8 100644 --- a/clang/test/Modules/normal-module-map.cpp +++ b/clang/test/Modules/normal-module-map.cpp @@ -1,7 +1,7 @@ // Note: inside the module. expected-note{{'nested_umbrella_a' declared here}} // RUN: rm -rf %t -// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map %s -verify +// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fmodules -I %S/Inputs/normal-module-map %s -verify #include "Umbrella/umbrella_sub.h" int getUmbrella() { |