[Flang][OpenMP] Allow Fortran BLOCK construct inside WORKSHARE region (#193352) **Problem** Flang incorrectly rejects Fortran BLOCK constructs inside OpenMP WORKSHARE regions. This fixes the semantic check to recursively validate the contents of BLOCK constructs instead of rejecting them. The Fortran BLOCK construct (F2008) is a transparent scoping wrapper that does not affect execution semantics. When a BLOCK appears inside a WORKSHARE region, the restriction on allowed statements should apply to the contents of the BLOCK, not the BLOCK construct itself. **Fix** The function CheckWorkshareBlockStmts (check-omp-structure.cpp) loops through each statement inside a WORKSHARE region and checks if it's allowed. Before this fix, it only recognized: ``` Assignments, FORALL, WHERE statements OpenMP constructs (ATOMIC, CRITICAL, PARALLEL) When it saw a Fortran BLOCK, it didn't recognize it and threw an error. ``` When we see a BLOCK construct, instead of rejecting it, we "look inside" and check if the statements inside the BLOCK are valid. This is done by calling the same function recursively on the BLOCK's contents. Issue : [192930](https://github.com/llvm/llvm-project/issues/192930) --------- Co-authored-by: Jay Satish Kumar Patel <kumarpat@pe31.hpc.amslabs.hpecorp.net>
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.