diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-29 19:06:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-29 19:06:37 +0000 |
commit | 514b636adab8c9934f82ba9a4beb600e2b3072e7 (patch) | |
tree | 04c0bb03b83232301d034d898b432b702f41bb3f /clang/test/Modules/normal-module-map.cpp | |
parent | 6dc57927ea85c51a0adb8a781eb7c362fb7d7b13 (diff) | |
download | bcm5719-llvm-514b636adab8c9934f82ba9a4beb600e2b3072e7.tar.gz bcm5719-llvm-514b636adab8c9934f82ba9a4beb600e2b3072e7.zip |
Teach the module import mechanism how to rebuild modules expressed via
module map, rather than assuming that there is an umbrella
header. This allows us to automatically build umbrella-less modules.
llvm-svn: 145415
Diffstat (limited to 'clang/test/Modules/normal-module-map.cpp')
-rw-r--r-- | clang/test/Modules/normal-module-map.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/test/Modules/normal-module-map.cpp b/clang/test/Modules/normal-module-map.cpp index c87657f5a9b..19294950d49 100644 --- a/clang/test/Modules/normal-module-map.cpp +++ b/clang/test/Modules/normal-module-map.cpp @@ -1,8 +1,4 @@ // RUN: rm -rf %t -// FIXME: Eventually, we should be able to remove these explicit module creation lines -// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fmodule-name=libA -emit-module-from-map %S/Inputs/normal-module-map/module.map -// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fmodule-name=libB -emit-module-from-map %S/Inputs/normal-module-map/module.map -// RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fmodule-name=libNested -emit-module-from-map %S/Inputs/normal-module-map/nested/module.map // RUN: %clang_cc1 -x objective-c -fmodule-cache-path %t -fauto-module-import -I %S/Inputs/normal-module-map %s -verify #include "Umbrella/umbrella_sub.h" |