https://github.com/huixie90 updated
https://github.com/llvm/llvm-project/pull/78707
>From 0dc5bf91516e2138ed73b602cb17943ef6bcc878 Mon Sep 17 00:00:00 2001
From: Hui
Date: Fri, 19 Jan 2024 12:33:43 +
Subject: [PATCH 1/8] [libc++] fix _Atomic c11 compare exchange does not update
expected re
@@ -0,0 +1,70 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
https://github.com/RKSimon auto_merge_enabled
https://github.com/llvm/llvm-project/pull/162836
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/huixie90 updated
https://github.com/llvm/llvm-project/pull/78707
>From 0dc5bf91516e2138ed73b602cb17943ef6bcc878 Mon Sep 17 00:00:00 2001
From: Hui
Date: Fri, 19 Jan 2024 12:33:43 +
Subject: [PATCH 01/10] [libc++] fix _Atomic c11 compare exchange does not
update expected
@@ -683,61 +690,8 @@ void WhitespaceManager::alignConsecutiveMacros() {
return Current->Next->SpacesRequiredBefore == SpacesRequiredBefore;
};
- unsigned MinColumn = 0;
-
- // Start and end of the token sequence we're processing.
- unsigned StartOfSequence = 0;
- uns
https://github.com/owenca approved this pull request.
https://github.com/llvm/llvm-project/pull/164120
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -536,14 +540,17 @@ static unsigned AlignTokens(const FormatStyle &Style, F
&&Matches,
if (CurrentChange.Tok->isNot(tok::comment))
LineIsComment = false;
-if (CurrentChange.Tok->is(tok::comma)) {
- ++CommasBeforeMatch;
-} else if (CurrentChange.indent
https://github.com/cor3ntin closed
https://github.com/llvm/llvm-project/pull/163927
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Corentin Jabot
Date: 2025-10-19T09:26:22+02:00
New Revision: 3a15687d1c789ebac04bf394ec31f95331c74bf8
URL:
https://github.com/llvm/llvm-project/commit/3a15687d1c789ebac04bf394ec31f95331c74bf8
DIFF:
https://github.com/llvm/llvm-project/commit/3a15687d1c789ebac04bf394ec31f95331c74bf8.diff
@@ -581,3 +581,28 @@ bool
Parser::ParseMicrosoftIfExistsBraceInitializer(ExprVector &InitExprs,
return !trailingComma;
}
+
+ExprResult Parser::ParseInitializer(Decl *DeclForInitializer) {
+ // Set DeclForInitializer for file-scope variables.
+ // For constexpr references,
@@ -13727,6 +13734,16 @@ void Sema::DiagnoseUniqueObjectDuplication(const
VarDecl *VD) {
}
void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
+ // RAII helper to ensure DeclForInitializer is cleared on all exit paths
+ struct ClearDeclForInitiali
@@ -6750,6 +6750,11 @@ class Sema final : public SemaBase {
/// suffice, e.g., in a default function argument.
Decl *ManglingContextDecl;
+/// Declaration for initializer if one is currently being
+/// parsed. Used when an expression has a possibly unreachable
@@ -581,3 +581,28 @@ bool
Parser::ParseMicrosoftIfExistsBraceInitializer(ExprVector &InitExprs,
return !trailingComma;
}
+
+ExprResult Parser::ParseInitializer(Decl *DeclForInitializer) {
+ // Set DeclForInitializer for file-scope variables.
+ // For constexpr references,
@@ -116,6 +126,10 @@ class AnalysisBasedWarnings {
Policy &getPolicyOverrides() { return PolicyOverrides; }
void PrintStats() const;
+
+ void
+ EmitPossiblyUnreachableDiags(AnalysisDeclContext &AC,
+ SmallVector PUDs);
cor3n
n2h9 wrote:
I have just walked through this code in debugger, and looks like when we throw
pointer to int, we do not reach this case
```
case Type::ObjCObjectPointer:
case Type::Pointer:
return "_ZTVN10__cxxabiv119__pointer_type_infoE";
```
we reach it if we throw pointer to object. But
https://github.com/n2h9 converted_to_draft
https://github.com/llvm/llvm-project/pull/163850
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -829,22 +829,22 @@ static bool flipDemorganSide(SmallVectorImpl
&Fixes,
const ASTContext &Ctx, const Expr *E,
std::optional OuterBO);
-/// Inverts \p BinOp, Removing \p Parens if they exist and are safe to remove.
-
https://github.com/RKSimon updated
https://github.com/llvm/llvm-project/pull/162836
>From 3128a37fa669b00235b06f577dd5bf8354b2265e Mon Sep 17 00:00:00 2001
From: SeongjaeP
Date: Thu, 9 Oct 2025 14:25:24 +0900
Subject: [PATCH 01/12] Apply style fixes and rebase onto upstream
---
clang/lib/AST/
https://github.com/vbvictor created
https://github.com/llvm/llvm-project/pull/164158
Continue https://github.com/llvm/llvm-project/pull/153885.
>From b071fadcd81db36a006c13ef904bfcf8b12ca6d9 Mon Sep 17 00:00:00 2001
From: Victor Baranov
Date: Sun, 19 Oct 2025 15:30:44 +0300
Subject: [PATCH] [c
llvmbot wrote:
@llvm/pr-subscribers-clang-tidy
@llvm/pr-subscribers-clang-tools-extra
Author: Baranov Victor (vbvictor)
Changes
Continue https://github.com/llvm/llvm-project/pull/153885.
---
Patch is 21.81 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-pro
https://github.com/mstorsjo approved this pull request.
LGTM, thanks!
https://github.com/llvm/llvm-project/pull/164147
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/mstorsjo approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/163947
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/Lancern created
https://github.com/llvm/llvm-project/pull/164162
This patch adds support for the following atomic builtin functions:
- `__atomic_test_and_set`
- `__atomic_clear`
>From 57e1b095244131e723f52f415bd18e7e0d6c1ab9 Mon Sep 17 00:00:00 2001
From: Sirui Mu
Date:
https://github.com/hubert-reinterpretcast edited
https://github.com/llvm/llvm-project/pull/164106
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvmbot wrote:
@llvm/pr-subscribers-clangir
Author: Sirui Mu (Lancern)
Changes
This patch adds support for the following atomic builtin functions:
- `__atomic_test_and_set`
- `__atomic_clear`
---
Full diff: https://github.com/llvm/llvm-project/pull/164162.diff
4 Files Affected:
- (
Author: Aiden Grossman
Date: 2025-10-19T13:05:58-07:00
New Revision: 227272662a02151ad401c0881da46250944dc3e3
URL:
https://github.com/llvm/llvm-project/commit/227272662a02151ad401c0881da46250944dc3e3
DIFF:
https://github.com/llvm/llvm-project/commit/227272662a02151ad401c0881da46250944dc3e3.diff
Author: Aiden Grossman
Date: 2025-10-19T20:38:46Z
New Revision: ea3dbb8b0061a7e44cba92b6e4e4486c4a416d65
URL:
https://github.com/llvm/llvm-project/commit/ea3dbb8b0061a7e44cba92b6e4e4486c4a416d65
DIFF:
https://github.com/llvm/llvm-project/commit/ea3dbb8b0061a7e44cba92b6e4e4486c4a416d65.diff
LOG
@@ -656,7 +656,6 @@ void WhitespaceManager::alignConsecutiveMacros() {
auto AlignMacrosMatches = [](const Change &C) {
const FormatToken *Current = C.Tok;
HazardyKnusperkeks wrote:
Would make this one stand out, and I don't think that's necessary, All c
https://github.com/HazardyKnusperkeks updated
https://github.com/llvm/llvm-project/pull/164120
From 25469d96008d17f370d6372539f4ed5b8a151e5c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?=
Date: Sat, 18 Oct 2025 21:58:35 +0200
Subject: [PATCH 1/2] [clang-format] Reuse Alig
@@ -683,61 +690,8 @@ void WhitespaceManager::alignConsecutiveMacros() {
return Current->Next->SpacesRequiredBefore == SpacesRequiredBefore;
};
- unsigned MinColumn = 0;
-
- // Start and end of the token sequence we're processing.
- unsigned StartOfSequence = 0;
- uns
@@ -536,14 +540,17 @@ static unsigned AlignTokens(const FormatStyle &Style, F
&&Matches,
if (CurrentChange.Tok->isNot(tok::comment))
LineIsComment = false;
-if (CurrentChange.Tok->is(tok::comma)) {
- ++CommasBeforeMatch;
-} else if (CurrentChange.indent
https://github.com/HazardyKnusperkeks auto_merge_enabled
https://github.com/llvm/llvm-project/pull/164120
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/HazardyKnusperkeks updated
https://github.com/llvm/llvm-project/pull/164122
From ff688c7e3829f769cfd20f2482e90b07e54618c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?=
Date: Sat, 18 Oct 2025 22:11:47 +0200
Subject: [PATCH 1/2] [clang-format][NFC] Simpl
@@ -133,13 +133,15 @@ file, if any.
static cl::opt HeaderFilter("header-filter", desc(R"(
Regular expression matching the names of the
headers to output diagnostics from. Diagnostics
-from the main file of each translation unit are
-always displayed.
+from the main file and all
nikic wrote:
Reverse ping
https://github.com/llvm/llvm-project/pull/125258
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (Andres-Salamanca)
Changes
This PR adds support for emitting the builtins coroAlloc, coroBegin, and
coroSize.
---
Full diff: https://github.com/llvm/llvm-project/pull/164180.diff
6 Files Affected:
- (modified) clang/include/clang/
https://github.com/Andres-Salamanca created
https://github.com/llvm/llvm-project/pull/164180
This PR adds support for emitting the builtins coroAlloc, coroBegin, and
coroSize.
>From 3e24f4b1e5b1d15f34e38755ebe7c44ec09b9fba Mon Sep 17 00:00:00 2001
From: Andres Salamanca
Date: Sun, 19 Oct 2025
@@ -926,7 +926,14 @@ C++20 implementation status
https://wg21.link/p1857r3";>P1857R3
-No
+
+
+>Clang 21(Partial)
+The restriction 'A module directive may only appear as
+the first preprocessing
https://github.com/hubert-reinterpretcast edited
https://github.com/llvm/llvm-project/pull/164095
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/hubert-reinterpretcast approved this pull request.
LGTM once comments are addressed.
https://github.com/llvm/llvm-project/pull/164095
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/list
https://github.com/stemil01 created
https://github.com/llvm/llvm-project/pull/164184
Addresses #103038.
Currently, the list of functions for which `SecuritySyntaxChecker` emits
warnings is fixed. This patch adds a new command-line option `Warn`, which
allows users to provide a space-separated
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it
https://github.com/stemil01 edited
https://github.com/llvm/llvm-project/pull/164183
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/stemil01 created
https://github.com/llvm/llvm-project/pull/164183
Addresses issue #103038.
Some of the functions mentioned in that issue are already covered or do not
exist under the specified names. Therefore, this patch adds only the three
functions listed above.
There i
llvmbot wrote:
@llvm/pr-subscribers-clang-static-analyzer-1
Author: Stefan Milenkovic (stemil01)
Changes
Addresses issue #103038.
Some of the functions mentioned in that issue are already covered or do not
exist under the specified names. Therefore, this patch adds only the three
functi
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it
llvmbot wrote:
@llvm/pr-subscribers-clang-static-analyzer-1
Author: Stefan Milenkovic (stemil01)
Changes
Addresses #103038.
Currently, the list of functions for which `SecuritySyntaxChecker` emits
warnings is fixed. This patch adds a new command-line option `Warn`, which
allows users to
@@ -986,6 +989,14 @@ def warn_module_conflict : Warning<
InGroup;
// C++20 modules
+def err_pp_module_name_is_macro : Error<
+ "%select{module|partition}0 name component %1 cannot be a object-like
macro">;
+def err_pp_module_expected_ident : Error<
+ "expected %select{ide
https://github.com/kovdan01 requested changes to this pull request.
@ojhunt Thanks for tons of fixes! We have one more usage of unions in
libunwind.cpp which is technically UB.
I've proposed a fix for this. See commit
a29af825c71d70e83445cd4214f7145642201506 from my branch
[ptrauth-unwinding-
@@ -118,22 +118,62 @@ _LIBUNWIND_HIDDEN int __unw_set_reg(unw_cursor_t *cursor,
unw_regnum_t regNum,
typedef LocalAddressSpace::pint_t pint_t;
AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor;
if (co->validReg(regNum)) {
-co->setReg(regNum, (pint_t)value);
https://github.com/kovdan01 edited
https://github.com/llvm/llvm-project/pull/143230
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/stemil01 edited
https://github.com/llvm/llvm-project/pull/164184
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -22,7 +22,6 @@
#include "dwarf2.h"
#include "libunwind_ext.h"
-
kovdan01 wrote:
Nit: unintended formatting change
https://github.com/llvm/llvm-project/pull/143230
___
cfe-commits mailing list
[email protected]
https://github.com/stemil01 edited
https://github.com/llvm/llvm-project/pull/164184
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
kovdan01 wrote:
@ojhunt Can we consider this PR obsolete and close it since we no longer use
this union approach and things are already (almost) fixed in the main unwinding
PR #143230?
https://github.com/llvm/llvm-project/pull/161027
___
cfe-commits
Author: Björn Schäpers
Date: 2025-10-20T00:04:42+02:00
New Revision: dd6a6bac708235fe2ed80670cd873258430264c2
URL:
https://github.com/llvm/llvm-project/commit/dd6a6bac708235fe2ed80670cd873258430264c2
DIFF:
https://github.com/llvm/llvm-project/commit/dd6a6bac708235fe2ed80670cd873258430264c2.diff
https://github.com/HazardyKnusperkeks auto_merge_disabled
https://github.com/llvm/llvm-project/pull/164120
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/HazardyKnusperkeks closed
https://github.com/llvm/llvm-project/pull/164120
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
=?utf-8?q?Björn_Schäpers?=
Message-ID:
In-Reply-To:
@@ -656,7 +656,6 @@ void WhitespaceManager::alignConsecutiveMacros() {
auto AlignMacrosMatches = [](const Change &C) {
const FormatToken *Current = C.Tok;
owenca wrote:
This is unique in that a loca
=?utf-8?q?Bj=C3=B6rn_Sch=C3=A4pers?=
Message-ID:
In-Reply-To:
https://github.com/owenca approved this pull request.
https://github.com/llvm/llvm-project/pull/164122
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-b
@@ -530,6 +534,9 @@ void ARMPassConfig::addPreEmitPass() {
}
void ARMPassConfig::addPreEmitPass2() {
+ // Unpack KCFI bundles before AsmPrinter
+ addPass(createUnpackMachineBundles(nullptr));
davemgreen wrote:
There is already a UnpackMachineBundles in addP
@@ -6535,6 +6535,15 @@ def CMP_SWAP_64 : PseudoInst<(outs GPRPair:$Rd,
GPRPair:$addr_temp_out),
def : Pat<(atomic_fence (timm), 0), (MEMBARRIER)>;
+//===--===//
+// KCFI check pseudo-instruction.
+//===-
@@ -0,0 +1,191 @@
+; RUN: llc -mtriple=thumbv6m-none-eabi < %s | FileCheck %s
davemgreen wrote:
I would recommend update_llc_test_checks wherever it is sensible to use it.
https://github.com/llvm/llvm-project/pull/163698
_
@@ -564,12 +564,17 @@ ExprResult
ConstraintSatisfactionChecker::EvaluateAtomicConstraint(
std::optional
ConstraintSatisfactionChecker::SubstitutionInTemplateArguments(
const NormalizedConstraintWithParamMapping &Constraint,
-MultiLevelTemplateArgumentList MLTAL,
-l
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it
https://github.com/MihailMihov created
https://github.com/llvm/llvm-project/pull/164155
This PR adds the VTable name `_ZTVN10__cxxabiv117__array_type_infoE` for
`Type::ConstantArray`, `Type::IncompleteArray` and `Type::VariableArray` in
`ItaniumRTTIBuilder::BuildVTablePointer`.
issue #163601
MihailMihov wrote:
Currently there is no test for this, as I'm not sure how to test it. In the
linked issue, `throw` was suggested, but I don't think that can work for arrays
as they always go through the array-to-pointer conversion. `typeid` can't be
used in the tests and I think it's not imp
https://github.com/localspook updated
https://github.com/llvm/llvm-project/pull/164156
>From 5a22a1db87a1d45ef95e33944a87a101769fe8e2 Mon Sep 17 00:00:00 2001
From: Victor Chernyakin
Date: Sun, 19 Oct 2025 00:46:03 -0700
Subject: [PATCH 1/4] [clang][Sema] Attempt to parse delayed templates at t
https://github.com/localspook created
https://github.com/llvm/llvm-project/pull/164156
None
>From 5a22a1db87a1d45ef95e33944a87a101769fe8e2 Mon Sep 17 00:00:00 2001
From: Victor Chernyakin
Date: Sun, 19 Oct 2025 00:46:03 -0700
Subject: [PATCH 1/3] [clang][Sema] Attempt to parse delayed template
https://github.com/huixie90 updated
https://github.com/llvm/llvm-project/pull/78707
>From 0dc5bf91516e2138ed73b602cb17943ef6bcc878 Mon Sep 17 00:00:00 2001
From: Hui
Date: Fri, 19 Jan 2024 12:33:43 +
Subject: [PATCH 1/9] [libc++] fix _Atomic c11 compare exchange does not update
expected re
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff origin/main HEAD --extensions cpp --
clang-tools-extra/test/clang-tidy/checkers/bugpr
Author: Baranov Victor
Date: 2025-10-19T14:33:17+03:00
New Revision: f5ae102745bd5c2abf7b9bcdc1f7e765951c648b
URL:
https://github.com/llvm/llvm-project/commit/f5ae102745bd5c2abf7b9bcdc1f7e765951c648b
DIFF:
https://github.com/llvm/llvm-project/commit/f5ae102745bd5c2abf7b9bcdc1f7e765951c648b.diff
https://github.com/vbvictor closed
https://github.com/llvm/llvm-project/pull/164085
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Matheus Izvekov
Date: 2025-10-19T14:49:40-03:00
New Revision: fd073a3fbaf0b05fae61cca5def80ce0adaeadb3
URL:
https://github.com/llvm/llvm-project/commit/fd073a3fbaf0b05fae61cca5def80ce0adaeadb3
DIFF:
https://github.com/llvm/llvm-project/commit/fd073a3fbaf0b05fae61cca5def80ce0adaeadb3.dif
https://github.com/mizvekov closed
https://github.com/llvm/llvm-project/pull/162224
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -3554,12 +3543,26 @@ namespace clang {
}
}
-bool
-Sema::InstantiateClass(SourceLocation PointOfInstantiation,
- CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
- const MultiLevelTemplateArgumentList &TemplateArgs,
-
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `clang-m68k-linux-cross`
running on `suse-gary-m68k-cross` while building `clang` at step 4 "build stage
1".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/27/builds/17725
Here is the relevant piece
@@ -926,7 +926,14 @@ C++20 implementation status
https://wg21.link/p1857r3";>P1857R3
-No
+
+
+>Clang 21(Partial)
h-vetinari wrote:
```suggestion
Clang 21 (Partial)
```
https://github.com/
llvmbot wrote:
@llvm/pr-subscribers-clangir
Author: Amr Hesham (AmrDeveloper)
Changes
Upstream support the CompoundLiteralExpr for Aggregate types
---
Full diff: https://github.com/llvm/llvm-project/pull/164172.diff
3 Files Affected:
- (modified) clang/lib/CIR/CodeGen/CIRGenExprAggrega
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Amr Hesham (AmrDeveloper)
Changes
Upstream support the CompoundLiteralExpr for Aggregate types
---
Full diff: https://github.com/llvm/llvm-project/pull/164172.diff
3 Files Affected:
- (modified) clang/lib/CIR/CodeGen/CIRGenExprAggregate
https://github.com/ZhongRuoyu updated
https://github.com/llvm/llvm-project/pull/160903
>From 181c4d65060405cdba484c18ae09b3fe1255414d Mon Sep 17 00:00:00 2001
From: Ruoyu Zhong
Date: Fri, 26 Sep 2025 23:17:32 +0800
Subject: [PATCH] [Clang] only convert dependency filename to native form when
M
Author: Hui
Date: 2025-10-19T19:25:00+01:00
New Revision: b2574c9dad487be92605316efd929738a5f6d851
URL:
https://github.com/llvm/llvm-project/commit/b2574c9dad487be92605316efd929738a5f6d851
DIFF:
https://github.com/llvm/llvm-project/commit/b2574c9dad487be92605316efd929738a5f6d851.diff
LOG: [cla
https://github.com/AmrDeveloper created
https://github.com/llvm/llvm-project/pull/164172
Upstream support the CompoundLiteralExpr for Aggregate types
>From 4509f800a08d11eb5463da05b73962715978e685 Mon Sep 17 00:00:00 2001
From: Amr Hesham
Date: Sun, 19 Oct 2025 20:26:54 +0200
Subject: [PATCH]
https://github.com/huixie90 closed
https://github.com/llvm/llvm-project/pull/78707
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/kuhar created
https://github.com/llvm/llvm-project/pull/164173
Update `.Cases` and `.CasesLower` with 4+ args to use the `initializer_list`
overload. The deprecation of these functions will come in a separate PR.
For more context, see: https://github.com/llvm/llvm-project/pu
Author: owenca
Date: 2025-10-19T11:38:08-07:00
New Revision: f0720363d39746c906647a23147f17185f5c1433
URL:
https://github.com/llvm/llvm-project/commit/f0720363d39746c906647a23147f17185f5c1433
DIFF:
https://github.com/llvm/llvm-project/commit/f0720363d39746c906647a23147f17185f5c1433.diff
LOG: [
https://github.com/kuhar updated
https://github.com/llvm/llvm-project/pull/164173
>From b06d53db357a5620abed42dcb79e1d2ada19178c Mon Sep 17 00:00:00 2001
From: Jakub Kuderski
Date: Sun, 19 Oct 2025 14:30:03 -0400
Subject: [PATCH 1/2] [ADT] Prepare for deprecation of StringSwitch cases with
4+
https://github.com/owenca closed
https://github.com/llvm/llvm-project/pull/164052
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/localspook updated
https://github.com/llvm/llvm-project/pull/164156
>From 5a22a1db87a1d45ef95e33944a87a101769fe8e2 Mon Sep 17 00:00:00 2001
From: Victor Chernyakin
Date: Sun, 19 Oct 2025 00:46:03 -0700
Subject: [PATCH 1/5] [clang][Sema] Attempt to parse delayed templates at t
https://github.com/localspook updated
https://github.com/llvm/llvm-project/pull/164156
>From 5a22a1db87a1d45ef95e33944a87a101769fe8e2 Mon Sep 17 00:00:00 2001
From: Victor Chernyakin
Date: Sun, 19 Oct 2025 00:46:03 -0700
Subject: [PATCH 1/5] [clang][Sema] Attempt to parse delayed templates at t
https://github.com/localspook edited
https://github.com/llvm/llvm-project/pull/164156
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/vbvictor updated
https://github.com/llvm/llvm-project/pull/164085
>From 64d7d69ca3bd9d78dd0b2c3522919dbe4d13e3ab Mon Sep 17 00:00:00 2001
From: Victor Baranov
Date: Sat, 18 Oct 2025 16:44:01 +0300
Subject: [PATCH 1/2] [clang-tidy][NFC] Fix
llvm-prefer-static-over-anonymous-n
Author: Baranov Victor
Date: 2025-10-19T14:19:06+03:00
New Revision: cb79d8f77c12dedbbd32cf5fe94f9651582795d3
URL:
https://github.com/llvm/llvm-project/commit/cb79d8f77c12dedbbd32cf5fe94f9651582795d3
DIFF:
https://github.com/llvm/llvm-project/commit/cb79d8f77c12dedbbd32cf5fe94f9651582795d3.diff
https://github.com/vbvictor closed
https://github.com/llvm/llvm-project/pull/164096
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff origin/main HEAD --extensions h,cpp --
clang-tools-extra/clang-tidy/android/CloexecCh
https://github.com/vbvictor updated
https://github.com/llvm/llvm-project/pull/164085
>From 64d7d69ca3bd9d78dd0b2c3522919dbe4d13e3ab Mon Sep 17 00:00:00 2001
From: Victor Baranov
Date: Sat, 18 Oct 2025 16:44:01 +0300
Subject: [PATCH 1/3] [clang-tidy][NFC] Fix
llvm-prefer-static-over-anonymous-n
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Matheus Izvekov (mizvekov)
Changes
This makes pushing / popping CodeSynthesisContexts much cheaper, as it
delegates to another class this functionality which is not actually needed in
most cases.
It also converts a bunch of these uses in
Author: Matheus Izvekov
Date: 2025-10-19T16:45:50-03:00
New Revision: 63ca2fd7a16f532a95e53780220d2eae0debb8d9
URL:
https://github.com/llvm/llvm-project/commit/63ca2fd7a16f532a95e53780220d2eae0debb8d9
DIFF:
https://github.com/llvm/llvm-project/commit/63ca2fd7a16f532a95e53780220d2eae0debb8d9.dif
https://github.com/mizvekov closed
https://github.com/llvm/llvm-project/pull/164177
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/mizvekov created
https://github.com/llvm/llvm-project/pull/164177
This makes pushing / popping CodeSynthesisContexts much cheaper, as it
delegates to another class this functionality which is not actually needed in
most cases.
It also converts a bunch of these uses into jus
1 - 100 of 230 matches
Mail list logo