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/submodules-preprocess.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/submodules-preprocess.cpp')
-rw-r--r-- | clang/test/Modules/submodules-preprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/submodules-preprocess.cpp b/clang/test/Modules/submodules-preprocess.cpp index ed51b4543f8..b819d40f25a 100644 --- a/clang/test/Modules/submodules-preprocess.cpp +++ b/clang/test/Modules/submodules-preprocess.cpp @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -Eonly -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/submodules %s -verify +// RUN: %clang_cc1 -Eonly -fmodule-cache-path %t -fmodules -I %S/Inputs/submodules %s -verify __import_module__ std.vector; |