2 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -std=c++20 -O1 -triple %itanium_abi_triple %t/a.cppm \
6 // RUN: -emit-module-interface -o %t/a.pcm
7 // RUN: %clang_cc1 -std=c++20 -O1 -triple %itanium_abi_triple %t/b.cppm \
8 // RUN: -emit-module-interface -fprebuilt-module-path=%t -o %t/b.pcm
9 // RUN: %clang_cc1 -std=c++20 -O1 -triple %itanium_abi_triple %t/c.cppm \
10 // RUN: -emit-module-interface -fprebuilt-module-path=%t -o %t/c.pcm
11 // RUN: %clang_cc1 -std=c++20 -O1 -triple %itanium_abi_triple %t/c.pcm -S \
12 // RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %t/c.cppm
19 export __attribute__((noinline)) int a_noinline() {
30 export __attribute__((noinline)) int b_noinline() {
38 return 43 + b() + a() + b_noinline() + a_noinline();
41 // CHECK: define{{.*}}available_externally{{.*}}@_ZW1b1bv(
42 // CHECK: define{{.*}}available_externally{{.*}}@_ZW1a1av(
44 // CHECK: declare{{.*}}@_ZW1b10b_noinlinev()
45 // CHECK: declare{{.*}}@_ZW1a10a_noinlinev()