| commit | 0b52aa1bdbc7416592e9c81d9a44ce411c21e081 | [log] [tgz] |
|---|---|---|
| author | vdonaldson <37090318+vdonaldson@users.noreply.github.com> | Mon Feb 24 10:50:03 2025 -0500 |
| committer | GitHub <noreply@github.com> | Mon Feb 24 10:50:03 2025 -0500 |
| tree | 2fdfcf422f3ecbfc9de9389bdfc67632ae9d8473 | |
| parent | 3a6108bcac26016b791cabce86424c1f1dcf3056 [diff] |
[flang] Unsupported rounding modes (#128240) Two new ieee_round_type values were added in f18 beyond the four values defined in f03 and f08: ieee_away and ieee_other. Contemporary hardware typically does not have support for these rounding modes, so flang does not support them. ieee_support_rounding calls for these values return false. Current generated code handles some attempts to set the rounding mode to one of these unsupported values by setting the mode to ieee_nearest. Update the code to explicitly do this in all cases.
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.