Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / language-linkage.cppm
blobbf7982cd9207d630918ab40e56bb075678eb7ba8
1 // Make sure that the declarations inside the language linkage can
2 // be generated correctly.
3 //
4 // RUN: rm -fr %t
5 // RUN: mkdir %t
6 //
7 // RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %s -emit-module-interface -o %t/M.pcm
8 // RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/M.pcm -S -emit-llvm -disable-llvm-passes -o - | FileCheck %s
9 export module M;
11 extern "C++" {
12 void foo() {} 
15 extern "C" void bar() {}
17 // CHECK: define {{.*}}@bar(
18 // CHECK: define {{.*}}@_Z3foov(