Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / pr59999.cppm
blob23710de9fe1c55961a307775baf0f8a5e04e6cc0
1 // Test case from https://github.com/llvm/llvm-project/issues/59999
2 //
3 // RUN: rm -rf %t
4 // RUN: mkdir -p %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Module.cppm \
8 // RUN:     -emit-module-interface -o %t/Module.pcm
9 // RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.cppm \
10 // RUN:     -fmodule-file=Module=%t/Module.pcm -emit-module-interface -o %t/Object.pcm
11 // RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.pcm \
12 // RUN:     -fmodule-file=Module=%t/Module.pcm -S -emit-llvm -o - | FileCheck %t/Object.cppm
14 //--- Module.cppm
15 export module Module;
17 export template <class ObjectType> bool ModuleRegister() { return true; };
19 export struct ModuleEntry {
20   static const bool bRegistered;
23 const bool ModuleEntry::bRegistered = ModuleRegister<ModuleEntry>();
25 //--- Object.cppm
26 export module Object;
28 import Module;
30 export template <class ObjectType> bool ObjectRegister() { return true; }
31 export struct NObject {
32   static const bool bRegistered;
34 export struct ObjectModuleEntry {
35   static const bool bRegistered;
38 // This function is also required for crash
39 const bool NObject::bRegistered = ObjectRegister<NObject>();
40 // One another function, that helps clang crash
41 const bool ObjectModuleEntry::bRegistered = ModuleRegister<ObjectModuleEntry>();
43 // Check that the LLVM IR is generated correctly instead of crashing.
44 // CHECK: define{{.*}}@_ZGIW6Object