diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-29 22:42:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-29 22:42:06 +0000 |
commit | 70db54f18d179da6fbc0fe2280aaf3688c722f19 (patch) | |
tree | 0b16e09ffee473113914af8b429fe5549b9308f0 /clang/test/Modules/lookup.cpp | |
parent | 2a9c43649af21c735d18d08dc12be5b98d7b1ae7 (diff) | |
download | bcm5719-llvm-70db54f18d179da6fbc0fe2280aaf3688c722f19.tar.gz bcm5719-llvm-70db54f18d179da6fbc0fe2280aaf3688c722f19.zip |
Eliminate the -emit-module option, which emitted a module by parsing a
source file (e.g., a header). Immediately steal this useful option
name for building modules from a module map file.
llvm-svn: 145444
Diffstat (limited to 'clang/test/Modules/lookup.cpp')
-rw-r--r-- | clang/test/Modules/lookup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/lookup.cpp b/clang/test/Modules/lookup.cpp index 30177dc73c1..2bb53da66f1 100644 --- a/clang/test/Modules/lookup.cpp +++ b/clang/test/Modules/lookup.cpp @@ -15,8 +15,8 @@ void test(int i, float f) { } // RUN: rm -rf %t -// RUN: %clang_cc1 -emit-module-from-map -fmodule-cache-path %t -fmodule-name=lookup_left_cxx -x c++ %S/Inputs/module.map -verify -// RUN: %clang_cc1 -emit-module-from-map -fmodule-cache-path %t -fmodule-name=lookup_right_cxx -x c++ %S/Inputs/module.map -verify +// RUN: %clang_cc1 -emit-module -fmodule-cache-path %t -fmodule-name=lookup_left_cxx -x c++ %S/Inputs/module.map -verify +// RUN: %clang_cc1 -emit-module -fmodule-cache-path %t -fmodule-name=lookup_right_cxx -x c++ %S/Inputs/module.map -verify // RUN: %clang_cc1 -x c++ -fmodule-cache-path %t %s -verify // RUN: %clang_cc1 -ast-print -x c++ -fmodule-cache-path %t %s | FileCheck -check-prefix=CHECK-PRINT %s |