commit | 0975c09c671aca48c25b1f5952a675931ae93702 | [log] [tgz] |
---|---|---|
author | Oliver Hunt <oliver@apple.com> | Wed Apr 23 20:36:20 2025 -0700 |
committer | GitHub <noreply@github.com> | Thu Apr 24 05:36:20 2025 +0200 |
tree | c0c7f5d864dc3f3b20e3b10b04c698c772028ec1 | |
parent | de1af6b7271c6f4fc67848a849cf8fa6000d2b97 [diff] |
[clang][p2719] Module deserialization does not restore allocator flags (#137102) When serializing and deserializing a FunctionDecl we don't recover whether or not the decl was a type aware allocator or destroying delete, because in the final PR that information was placed in a side table in ASTContext. In principle it should be possible to re-do the semantic checks to determine what these flags should be when deserializing, but it seems like the most robust path is simply recording the flags directly in the serialized AST.
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.