From d82d0df9b217ce5f9ce6f81ea9bbdefdd35e02fe Mon Sep 17 00:00:00 2001 From: Tarun Prabhu Date: Mon, 2 Mar 2026 08:48:49 -0700 Subject: [PATCH 1/2] Add Flang to projects list Also update the OpenMP text to state that it is used by Flang. --- index.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 7d6bed15..4dfff0a7 100755 --- a/index.html +++ b/index.html @@ -54,6 +54,14 @@ sort of tools that can be built using the Clang frontend as a library to parse C/C++ code.

+
  • Flang is a modern "LLVM + native" Fortran compiler with an associated runtime, which aims to generate + high-performance code, and support Fortran 2023 and all official Fortran + standards going back to Fortran 77, including a number of widely-used + extensions. Flang + supports OpenMP + for both CPUs and GPUs.

  • +
  • The LLDB project builds on libraries provided by LLVM and Clang to provide a great native debugger. It uses the Clang ASTs and expression parser, LLVM JIT, LLVM disassembler, @@ -94,7 +102,7 @@

  • The OpenMP subproject provides an OpenMP runtime for use with the - OpenMP implementation in Clang.

  • + OpenMP implementation in Clang and Flang.

  • The polly project implements a suite of cache-locality optimizations as well as auto-parallelism and From 87b372f347585dc9596373df093e9d2c8130b484 Mon Sep 17 00:00:00 2001 From: Tarun Prabhu Date: Mon, 2 Mar 2026 13:31:46 -0700 Subject: [PATCH 2/2] Remove the use of "LLVM native" when describing flang --- index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 4dfff0a7..2d2f9c65 100755 --- a/index.html +++ b/index.html @@ -54,13 +54,13 @@ sort of tools that can be built using the Clang frontend as a library to parse C/C++ code.

  • -
  • Flang is a modern "LLVM - native" Fortran compiler with an associated runtime, which aims to generate - high-performance code, and support Fortran 2023 and all official Fortran - standards going back to Fortran 77, including a number of widely-used - extensions. Flang - supports OpenMP - for both CPUs and GPUs.

  • +
  • Flang is a modern + Fortran compiler with an associated runtime, which aims to generate + high-performance code, and support Fortran 2023 and all official Fortran + standards going back to Fortran 77, including a number of widely-used + extensions. Flang + supports OpenMP + for both CPUs and GPUs.

  • The LLDB project builds on libraries provided by LLVM and Clang to provide a great native debugger.