2015-02-26 06:20:13 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodule-name=b -o %t/b.pcm \
|
2015-02-26 06:20:13 +08:00
|
|
|
// RUN: -emit-module %S/Inputs/merge-decl-context/merge-decl-context.modulemap -I%S/Inputs \
|
|
|
|
// RUN: -I %S/Inputs/merge-decl-context
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodule-name=c -o %t/c.pcm \
|
2015-02-27 08:25:58 +08:00
|
|
|
// RUN: -fmodule-file=%t/b.pcm -fno-implicit-modules \
|
|
|
|
// RUN: -emit-module %S/Inputs/merge-decl-context/merge-decl-context.modulemap -I%S/Inputs \
|
|
|
|
// RUN: -I %S/Inputs/merge-decl-context
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodule-name=d -o %t/d.pcm \
|
2015-02-27 08:25:58 +08:00
|
|
|
// RUN: -fmodule-file=%t/b.pcm -fno-implicit-modules \
|
2015-02-26 06:20:13 +08:00
|
|
|
// RUN: -emit-module %S/Inputs/merge-decl-context/merge-decl-context.modulemap -I%S/Inputs \
|
|
|
|
// RUN: -I %S/Inputs/merge-decl-context
|
|
|
|
|
|
|
|
// Use the two modules in a single compile.
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodule-file=%t/c.pcm -fmodule-file=%t/b.pcm \
|
2015-02-27 08:25:58 +08:00
|
|
|
// RUN: -fmodule-file=%t/d.pcm -fno-implicit-modules \
|
2015-02-26 06:20:13 +08:00
|
|
|
// RUN: -fmodule-map-file=%S/Inputs/merge-decl-context/merge-decl-context.modulemap -I%S/Inputs \
|
|
|
|
// RUN: -emit-llvm -o %t/test.o %s
|
|
|
|
|
|
|
|
#include "Inputs/merge-decl-context/a.h"
|
|
|
|
#include "Inputs/merge-decl-context/b.h"
|
|
|
|
#include "Inputs/merge-decl-context/c.h"
|
2015-02-27 08:25:58 +08:00
|
|
|
#include "Inputs/merge-decl-context/d.h"
|
2015-02-26 06:20:13 +08:00
|
|
|
|
|
|
|
void t() {
|
|
|
|
ff(42);
|
|
|
|
}
|