| commit | 4d9479fa8f4e949bc4c5768477cd36687c1c6b29 | [log] [tgz] |
|---|---|---|
| author | Andre Kuhlenschmidt <andre.kuhlenschmidt@gmail.com> | Fri May 09 11:12:24 2025 -0700 |
| committer | GitHub <noreply@github.com> | Fri May 09 11:12:24 2025 -0700 |
| tree | b08a3cdba448e3185d1a333d096cc02d2531a68f | |
| parent | b3a6d434a7051d879718ef92a4fafd1697759aed [diff] |
[flang][openacc] Allow open acc routines from other modules. (#136012) OpenACC routines annotations in separate compilation units currently get ignored, which leads to errors in compilation. There are two reason for currently ignoring open acc routine information and this PR is addressing both. - The module file reader doesn't read back in openacc directives from module files. - Simple fix in `flang/lib/Semantics/mod-file.cpp` - The lowering to HLFIR doesn't generate routine directives for symbols imported from other modules that are openacc routines. - This is the majority of this diff, and is address by the changes that start in `flang/lib/Lower/CallInterface.cpp`.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.