[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / pr67893.cppm
blob7d4e4c1dc5d843c88c94661a79b157a8fc782a58
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: cd %t
4 //
5 // RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++20 %t/a.cppm \
6 // RUN:      -emit-module-interface -o %t/a.pcm
7 // RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++20 %t/m.cppm \
8 // RUN:      -emit-module-interface -fmodule-file=a=%t/a.pcm -o %t/m.pcm
9 // RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++20 %t/m.pcm  \
10 // RUN:     -S -emit-llvm -o - | FileCheck %t/m.cppm
12 //--- a.cppm
13 export module a;
14 export struct A {
15   A(){};
17 export A __dynamic_inited_a;
19 //--- m.cppm
20 module;
21 import a;
22 export module m;
23 import a;
24 module :private;
25 import a;
27 // CHECK: define void @_ZGIW1m
28 // CHECK: store i8 1, ptr @_ZGIW1m__in_chrg
29 // CHECK: call{{.*}}@_ZGIW1a