https://github.com/snarang181 created
https://github.com/llvm/llvm-project/pull/162000
None
>From 5a7b222f638fc2bd88d014eb90ec9d5de0678c7f Mon Sep 17 00:00:00 2001
From: Samarth Narang
Date: Sun, 5 Oct 2025 12:20:36 +0530
Subject: [PATCH] Compile-time dispatch for ASTVector operations.
---
c
@@ -3162,7 +3143,10 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC,
const CallExpr *Call,
case Builtin::BI_rotl:
case Builtin::BI_lrotl:
case Builtin::BI_rotl64:
-return interp__builtin_rotate(S, OpPC, Frame, Call, /*Right=*/false);
+return interp__builtin
Author: Younan Zhang
Date: 2025-10-05T06:20:09Z
New Revision: 505956eeb0943461f9f0c10f0cca0da185fa142d
URL:
https://github.com/llvm/llvm-project/commit/505956eeb0943461f9f0c10f0cca0da185fa142d
DIFF:
https://github.com/llvm/llvm-project/commit/505956eeb0943461f9f0c10f0cca0da185fa142d.diff
LOG:
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `bolt-aarch64-ubuntu-clang`
running on `bolt-worker-aarch64` while building `clang` at step 5
"build-clang-bolt".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/128/builds/7520
Here is the relevant p
https://github.com/zyn0217 edited
https://github.com/llvm/llvm-project/pull/161994
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/zyn0217 edited
https://github.com/llvm/llvm-project/pull/161994
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
owenca wrote:
Running the new clang-format from this patch on `clang/tools/clang-format/`
results in the following:
```
$ clang-format -ir tools/clang-format
/llvm-project/clang/tools/clang-format/.clang-format:1:1: error: Unknown value
for BasedOnStyle: clang - format
BasedOnStyle : clang - fo
@@ -3802,7 +3802,7 @@ static bool isFunctionDeclarationName(const LangOptions
&LangOpts,
const auto *Prev = Current.getPreviousNonComment();
assert(Prev);
- if (Prev->is(tok::coloncolon))
+ if (Prev->is(tok::coloncolon) && Prev->hasWhitespaceBefore())
H
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s bugprone-suspicious-include %t -- -- -isystem
%clang_tidy_headers -fmodules
+// RUN: %check_clang_tidy %s bugprone-suspicious-include %t --
-config="{CheckOptions: {bugprone-suspicious-include.IgnoredRegex: 'moc_.*'}"}
-- -isystem %
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/128274
>From 2110f92892dd72dfbe1a7d87116faa3693c7c586 Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Sat, 22 Feb 2025 03:08:24 +
Subject: [PATCH 01/40] workflows/release-binaries: Enable Windows x86 builds
---
cor3ntin wrote:
Yeah, i think it would not hurt!
https://github.com/llvm/llvm-project/pull/161953
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/boomanaiden154 approved this pull request.
https://github.com/llvm/llvm-project/pull/161874
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/tbaederr commented:
`interp__builtin_rotate` should be unused after this patch.
https://github.com/llvm/llvm-project/pull/161924
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/
https://github.com/tbaederr edited
https://github.com/llvm/llvm-project/pull/161924
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
qiongsiwu wrote:
Thanks so much for the detailed review @jansvoboda11 !
https://github.com/llvm/llvm-project/pull/161300
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/HazardyKnusperkeks edited
https://github.com/llvm/llvm-project/pull/161903
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/naveen-seth updated
https://github.com/llvm/llvm-project/pull/161486
>From 7130126a3231f50b8eeea662e664e19db06f51c7 Mon Sep 17 00:00:00 2001
From: Naveen Seth Hanig
Date: Wed, 1 Oct 2025 03:51:58 +0200
Subject: [PATCH 1/4] [clang][DependencyScanning] Reset options generated f
@@ -13660,10 +13594,11 @@ def warn_acc_var_referenced_lacks_op
"reference has no effect">,
InGroup>,
DefaultError;
+def warn_out_of_scope_var_usage
+: Warning<"variable %0 declared in 'if' block is always false or null
here">,
+ InGroup>;
---
@@ -1151,7 +1153,9 @@ class ScalarExprEmitter : public
StmtVisitor {
CIRGenFunction::LexicalScope lexScope{cgf, loc,
b.getInsertionBlock()};
cgf.curLexScope->setAsTernary();
- b.create(loc, cgf.evalua
@@ -1099,7 +1099,9 @@ class ScalarExprEmitter : public
StmtVisitor {
CIRGenFunction::LexicalScope lexScope{cgf, loc,
b.getInsertionBlock()};
cgf.curLexScope->setAsTernary();
- b.create(loc, cgf.evalua
https://github.com/xlauko approved this pull request.
lgtm % nits
https://github.com/llvm/llvm-project/pull/161922
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/xlauko edited
https://github.com/llvm/llvm-project/pull/161543
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/naveen-seth updated
https://github.com/llvm/llvm-project/pull/161486
>From 52a54eeb0bccb871c7addcf3236f40ffb7a226a9 Mon Sep 17 00:00:00 2001
From: Naveen Seth Hanig
Date: Wed, 1 Oct 2025 03:51:58 +0200
Subject: [PATCH 1/4] [clang][DependencyScanning] Reset options generated f
Author: Amr Hesham
Date: 2025-10-04T11:39:26Z
New Revision: a368fb5205a305197b650cbbc7264085d133e3e3
URL:
https://github.com/llvm/llvm-project/commit/a368fb5205a305197b650cbbc7264085d133e3e3
DIFF:
https://github.com/llvm/llvm-project/commit/a368fb5205a305197b650cbbc7264085d133e3e3.diff
LOG: [C
https://github.com/AmrDeveloper closed
https://github.com/llvm/llvm-project/pull/161571
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/AmrDeveloper closed
https://github.com/llvm/llvm-project/pull/161823
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
github-actions[bot] wrote:
:warning: C/C++ code linter clang-tidy found issues in your code. :warning:
You can test this locally with the following command:
```bash
git diff -U0 origin/main...HEAD --
clang-tools-extra/clang-tidy/bugprone/EmptyCatchCheck.cpp |
python3 clang-tools-extra/c
https://github.com/AmrDeveloper updated
https://github.com/llvm/llvm-project/pull/161571
>From b6e720dcff7e2e681e58c8393b247b48ca6e69fd Mon Sep 17 00:00:00 2001
From: Amr Hesham
Date: Wed, 1 Oct 2025 21:27:33 +0200
Subject: [PATCH 1/2] [CIR] Update ComplexImagOp to work on scalar type
---
...
https://github.com/xlauko edited
https://github.com/llvm/llvm-project/pull/161543
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
=?utf-8?q?Björn_Schäpers?= ,
=?utf-8?q?Björn_Schäpers?= ,
=?utf-8?q?Björn_Schäpers?=
Message-ID:
In-Reply-To:
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s bugprone-suspicious-include %t -- -- -isystem
%clang_tidy_headers -fmodules
+// RUN: %check_clang_tidy %s bugprone-suspic
@@ -4245,20 +4244,17 @@ def CIR_AtomicCmpXchg : CIR_Op<"atomic.cmpxchg", [
UnitAttr:$is_volatile);
let assemblyFormat = [{
-`(`
- $ptr `:` qualified(type($ptr)) `,`
- $expected `:` type($expected) `,`
- $desired `:` type($desired) `,
bolshakov-a wrote:
@erichkeane, @mizvekov, @cor3ntin
Does such a small fix in pretty-printing need a relnote?
https://github.com/llvm/llvm-project/pull/161953
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailm
https://github.com/AmrDeveloper updated
https://github.com/llvm/llvm-project/pull/156236
>From 1289be66e17b1be1d43e620fb5df75a08fcc4d2f Mon Sep 17 00:00:00 2001
From: AmrDeveloper
Date: Sun, 31 Aug 2025 12:44:19 +0200
Subject: [PATCH 1/3] [CIR] Support ComplexType in CallExpr args
---
clang/l
https://github.com/AmrDeveloper closed
https://github.com/llvm/llvm-project/pull/161876
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,411 @@
+//===--===//
+//
+// 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: Apa
https://github.com/XChy commented:
APInt calculation looks good to me. Please wait for @RKSimon to approve the
frontend-specific part.
https://github.com/llvm/llvm-project/pull/161056
___
cfe-commits mailing list
[email protected]
https://lis
@@ -2371,6 +2371,24 @@ NonOdrUseReason
Sema::getNonOdrUseReasonInCurrentContext(ValueDecl *D) {
return NOUR_None;
}
+bool Sema::isConditionVarReference(const DeclRefExpr *DRE) {
+ if (!DRE)
+return false;
+
+ const VarDecl *VD = dyn_cast(DRE->getDecl());
+
+ if (!VD)
37 matches
Mail list logo