diff options
author | Michael Kruse <llvm-project@meinersbur.de> | 2025-02-06 15:29:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-06 15:29:10 +0100 |
commit | b815a3942a0b0a9e7aab6b269ffdb0e93abc4368 (patch) | |
tree | dd12bb573072dfdc3bc74fc776d4493effa5e3eb /flang/lib/Frontend/CompilerInvocation.cpp | |
parent | f48d9e95d4ccd6ad2a7f53eb9db3e439c40c9dbf (diff) | |
download | llvm-b815a3942a0b0a9e7aab6b269ffdb0e93abc4368.zip llvm-b815a3942a0b0a9e7aab6b269ffdb0e93abc4368.tar.gz llvm-b815a3942a0b0a9e7aab6b269ffdb0e93abc4368.tar.bz2 |
[Flang] Move non-common headers to FortranSupport (#124416)
Move non-common files from FortranCommon to FortranSupport (analogous to
LLVMSupport) such that
* declarations and definitions that are only used by the Flang compiler,
but not by the runtime, are moved to FortranSupport
* declarations and definitions that are used by both ("common"), the
compiler and the runtime, remain in FortranCommon
* generic STL-like/ADT/utility classes and algorithms remain in
FortranCommon
This allows a for cleaner separation between compiler and runtime
components, which are compiled differently. For instance, runtime
sources must not use STL's `<optional>` which causes problems with CUDA
support. Instead, the surrogate header `flang/Common/optional.h` must be
used. This PR fixes this for `fast-int-sel.h`.
Declarations in include/Runtime are also used by both, but are
header-only. `ISO_Fortran_binding_wrapper.h`, a header used by compiler
and runtime, is also moved into FortranCommon.
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | flang/lib/Frontend/CompilerInvocation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flang/lib/Frontend/CompilerInvocation.cpp b/flang/lib/Frontend/CompilerInvocation.cpp index a2c1d3e..3eb413e 100644 --- a/flang/lib/Frontend/CompilerInvocation.cpp +++ b/flang/lib/Frontend/CompilerInvocation.cpp @@ -11,13 +11,13 @@ //===----------------------------------------------------------------------===// #include "flang/Frontend/CompilerInvocation.h" -#include "flang/Common/Fortran-features.h" -#include "flang/Common/OpenMP-features.h" -#include "flang/Common/Version.h" #include "flang/Frontend/CodeGenOptions.h" #include "flang/Frontend/PreprocessorOptions.h" #include "flang/Frontend/TargetOptions.h" #include "flang/Semantics/semantics.h" +#include "flang/Support/Fortran-features.h" +#include "flang/Support/OpenMP-features.h" +#include "flang/Support/Version.h" #include "flang/Tools/TargetSetup.h" #include "flang/Version.inc" #include "clang/Basic/AllDiagnostics.h" |