[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / no-external-type-id.cppm
blobd067e574e72e37bca28714fd63419514926aa1fb
1 // Testing that we won't record the type ID from external modules.
2 //
3 // RUN: rm -rf %t
4 // RUN: split-file %s %t
5 // RUN: cd %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
8 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/b.pcm \
9 // RUN:     -fmodule-file=a=%t/a.pcm
10 // RUN: llvm-bcanalyzer --dump --disable-histogram %t/b.pcm | FileCheck %t/b.cppm
12 // RUN: %clang_cc1 -std=c++20 %t/a.v1.cppm -emit-module-interface -o %t/a.v1.pcm
13 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/b.v1.pcm \
14 // RUN:     -fmodule-file=a=%t/a.v1.pcm
15 // RUN: diff %t/b.pcm %t/b.v1.pcm &> /dev/null
17 //--- a.cppm
18 export module a;
19 export int a();
21 //--- b.cppm
22 export module b;
23 import a;
24 export int b();
26 // CHECK: <DECL_FUNCTION {{.*}} op8=4120
27 // CHECK: <TYPE_FUNCTION_PROTO
29 //--- a.v1.cppm
30 // We remove the unused the function and testing if the format of the BMI of B will change.
31 export module a;