
See https://discourse.llvm.org/t/rfc-modules-should-we-embed-sources-to-the-bmi/81029 for details. Close https://github.com/llvm/llvm-project/issues/72383
6 lines
240 B
C++
6 lines
240 B
C++
// RUN: %clang -std=c++20 %s -fmodules-embed-all-files -### 2>&1 | FileCheck %s
|
|
// CHECK: -fmodules-embed-all-files
|
|
|
|
// RUN: %clang -std=c++20 %s -### 2>&1 | FileCheck %s --check-prefix=NON-EMBED
|
|
// NON-EMBED-NOT: -fmodules-embed-all-files
|