Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / pr62796.cppm
blobf96e54bc6adedec4b4a5183d0ef348fdc4139fbc
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/Cache.cppm -o %t/Cache.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/Use.cpp -fmodule-file=Fibonacci.Cache=%t/Cache.pcm \
7 // RUN:     -fsyntax-only -verify
9 //--- Cache.cppm
10 export module Fibonacci.Cache;
12 export namespace Fibonacci
14         constexpr unsigned long Recursive(unsigned long n)
15         {
16                 if (n == 0)
17                         return 0;
18                 if (n == 1)
19                         return 1;
20                 return Recursive(n - 2) + Recursive(n - 1);
21         }
23         template<unsigned long N>
24         struct Number{};
26         struct DefaultStrategy
27         {
28                 constexpr unsigned long operator()(unsigned long n, auto... other) const
29                 {
30                         return (n + ... + other);
31                 }
32         };
34     constexpr unsigned long Compute(Number<10ul>, auto strategy)
35         {
36                 return strategy(Recursive(10ul));
37         }
39         template<unsigned long N, typename Strategy = DefaultStrategy>
40         constexpr unsigned long Cache = Compute(Number<N>{}, Strategy{});
42     template constexpr unsigned long Cache<10ul>;
45 //--- Use.cpp
46 // expected-no-diagnostics
47 import Fibonacci.Cache;
49 constexpr bool value = Fibonacci::Cache<10ul> == 55;
51 static_assert(value == true, "");