commit | 27cf6ba1d7bc623a5dca5c0ae82af98d0cdfc390 | [log] [tgz] |
---|---|---|
author | Peter Klausler <pklausler@nvidia.com> | Wed Apr 19 11:59:43 2023 -0700 |
committer | Peter Klausler <pklausler@nvidia.com> | Mon May 08 15:08:37 2023 -0700 |
tree | 02a6bb2493ac03f02da968df7ab7022f0dddb048 | |
parent | 5ec62943ac188994d7c7d54ea995398a4c62e74f [diff] |
[flang][runtime] Initialize uninitialized pointer components Pointer components without default initialization pose some difficult (or impossible) problems when they appear as right-hand side targets in pointer assignment statements; they may contain garbage or stale data that looks enough like a valid descriptor to cause a crash. Solve the problem by avoiding it -- ensure that pointers' descriptors are at least minimally established. Differential Revision: https://reviews.llvm.org/D149979
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, or #llvm IRC channel on OFTC.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.