commit | 111ec8cbe2f3157587a7294ef13b97492baf7136 | [log] [tgz] |
---|---|---|
author | Kazu Hirata <kazu@google.com> | Wed Aug 20 16:30:24 2025 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Aug 20 16:31:35 2025 -0700 |
tree | f289176664617beb240e644bdbc24bc4ec9aae7f | |
parent | 0c8c0a1b36d457bc56e397e4f1b8d43216fbdcdd [diff] |
[flang] Use SmallPtrSet directly instead of SmallSet (NFC) (#154471) I'm trying to remove the redirection in SmallSet.h: template <typename PointeeType, unsigned N> class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {}; to make it clear that we are using SmallPtrSet. There are only handful places that rely on this redirection. This patch replaces SmallSet to SmallPtrSet where the element type is a pointer. GitOrigin-RevId: 8a5b6b302eb55e514f086ffcee3cf4f81750bb5a
Flang is a ground-up implementation of a Fortran front end written in modern C++. It started off as the f18 project (https://github.com/flang-compiler/f18) with an aim to replace the previous flang project (https://github.com/flang-compiler/flang) and address its various deficiencies. F18 was subsequently accepted into the LLVM project and rechristened as Flang.
Please note that flang is not ready yet for production usage.
Read more about flang in the docs directory. Start with the compiler overview.
To better understand Fortran as a language and the specific grammar accepted by flang, read Fortran For C Programmers and flang's specifications of the Fortran grammar and the OpenMP grammar.
Treatment of language extensions is covered in this document.
To understand the compilers handling of intrinsics, see the discussion of intrinsics.
To understand how a flang program communicates with libraries at runtime, see the discussion of runtime descriptors.
If you're interested in contributing to the compiler, read the style guide and also review how flang uses modern C++ features.
If you are interested in writing new documentation, follow LLVM's Markdown style guide.
Consult the Getting Started with Flang for information on building and running flang.