Fixes #175688 After #175383 was merged, the test `Semantics/OpenMP/linear-clause01.f90` was failing because it had an early return that prevented multiple errors from being reported. This PR fixes two issues: 1. **Removes the early return** after detecting a modifier error on DO/SIMD directives. Previously, when a modifier error was found, the function would return immediately without checking other restrictions like the scalar requirement. Now all applicable errors are reported. 2. **Updates test expectations** to expect both the modifier error AND the scalar error for Case 1, where `arg(:)` is an array used with `uval` modifier on a DO directive. Thanks to @NimishMishra for catching this during review - arrays should always be rejected in LINEAR clauses (except for `declare simd` with `ref` modifier), regardless of whether there are other errors.
The LLVM Compiler Infrastructure
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.
Getting the Source Code and Building LLVM
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.
Getting in touch
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.