| commit | 531cf8298b08eacdf670bac8c28db97a5dc8cb01 | [log] [tgz] |
|---|---|---|
| author | Eric Li <li.zhe.hua@gmail.com> | Thu Jul 24 04:06:03 2025 -0400 |
| committer | GitHub <noreply@github.com> | Thu Jul 24 04:06:03 2025 -0400 |
| tree | 4fbfa9bfa445c2bc447a30b0f75183e7e4498707 | |
| parent | 78ccaf1295b35a62d3d5bcda76d83eae788a6f48 [diff] |
[clang-format] Stop ctor initializer from being inlined (#150361) The colon in a constructor's initializer list triggers the inlining of a nested block as if it was a conditional operator expression. This prevents line breaks under certain circumstances when the initializer list contains braced initializers, which in turn prevents the line formatter from finding a solution. In this commit we exclude colons that are a constructor initializer colon from consideration of nested block inlining. Fixes #97242. Fixes #81822.
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.