Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / duplicated-module-file-eq-module-name.cppm
blobe86dbe2b941ef88c453e8eecd48fe5cbc679c8e3
1 // Tests that we will pick the last `-fmodule-file=<module-name>=<path>` flag
2 // for <module-name>.
4 // RUN: rm -rf %t
5 // RUN: split-file %s %t
6 // RUN: cd %t
7 //
8 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
9 // RUN: %clang_cc1 -std=c++20 %t/u.cpp -fmodule-file=a=%t/unexist.pcm \
10 // RUN:      -fmodule-file=a=%t/a.pcm -verify -fsyntax-only
12 //--- a.cppm
13 export module a;
14 export int a();
16 //--- u.cpp
17 // expected-no-diagnostics
18 import a;
19 int u() {
20     return a();