tru wrote:
I have merged everything but the lldb change since it doesn't cherry-pick
cleanly into the release branch.
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://list
tru wrote:
This is merged - I was not able to automatically merge this because I couldn't
push to this repo after rebasing. But it's handled in the release branch.
https://github.com/llvm/llvm-project/pull/154587
___
llvm-branch-commits mailing list
l
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154587
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -540,6 +540,22 @@ void ProfileGenerator::generateLineNumBasedProfile() {
// Fill in boundary sample counts as well as call site samples for calls
populateBoundarySamplesForAllFunctions(SC.BranchCounter);
+ // For each instruction with vtable accesses, get its symbolize
h-vetinari wrote:
Presumably this also needs #155218 to be merged first, c.f. #154567
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
@@ -513,6 +515,58 @@ Error
MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD,
llvm_unreachable("Unhandled RootSignatureElementKind enum.");
}
+Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table,
+
h-vetinari wrote:
Ah, I didn't notice that you did #155324 manually, because it wasn't linked in
#154686. So this PR can be closed (as there's more discussion in the other one
already)
https://github.com/llvm/llvm-project/pull/155324
___
llvm-branch-
h-vetinari wrote:
@philnik777 can you approve?
https://github.com/llvm/llvm-project/pull/155324
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -180,6 +180,33 @@ bool verifyBorderColor(uint32_t BorderColor) {
bool verifyLOD(float LOD) { return !std::isnan(LOD); }
+bool verifyOffsetOverflow(uint32_t Offset, uint64_t Register) {
+ if (Offset != ~0U)
+Register = Offset;
+
+ if (Register > ~0U)
+return true;
@@ -513,6 +515,58 @@ Error
MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD,
llvm_unreachable("Unhandled RootSignatureElementKind enum.");
}
+Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table,
+
https://github.com/ojhunt approved this pull request.
https://github.com/llvm/llvm-project/pull/155319
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ojhunt wrote:
> @ojhunt What do you think about merging this PR to the release branch?
LGTM
https://github.com/llvm/llvm-project/pull/155319
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: None (llvmbot)
Changes
Backport e612f37f2c110987ec43f8aa4fe8e86d6f64186f
Requested by: @ahatanak
---
Full diff: https://github.com/llvm/llvm-project/pull/155319.diff
2 Files Affected:
- (modified) clang/lib/CodeGen/CGExprConsta
llvmbot wrote:
@ojhunt What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/155319
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/155319
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/155319
Backport e612f37f2c110987ec43f8aa4fe8e86d6f64186f
Requested by: @ahatanak
>From 2cb47e6d921af280858a1977457362143ccca7e9 Mon Sep 17 00:00:00 2001
From: Akira Hatanaka
Date: Mon, 25 Aug 2025 10:17:43 -0700
Subj
https://github.com/dwblaikie approved this pull request.
I've still got concerns about this direction/divergence between users and
profilers & would love to see some attempt at unification - but a comment that
points to the issue at least centralizes the discusison and leaves breadcrumbs
towar
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I);
///
/// The moved instructions receive the insertion point debug location values
/// (DILocations) and their debug intrinsic instructions are removed.
+/// Selects and indirect calls keep their MD_prof metadata.
mtrofin wrote:
Found this in a drive-by, worth stamping it with the issue so it's easy to find
it later.
https://github.com/llvm/llvm-project/pull/155296
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cg
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Mircea Trofin (mtrofin)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/155296.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Utils/Local.cpp (+5-2)
``diff
diff --git a/llvm/lib/Transforms
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/155296
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/155296
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From c2f586622e96180172cd35c36d3de48d2745286b Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
https://github.com/mtrofin ready_for_review
https://github.com/llvm/llvm-project/pull/155296
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From c2f586622e96180172cd35c36d3de48d2745286b Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
mtrofin wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/155296?utm_source=stack-comment-downstack-mergeability-warning";
https://github.com/mtrofin created
https://github.com/llvm/llvm-project/pull/155296
None
>From 8422d7e43ade58187a0c3635640c9d20d2b6f654 Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Mon, 25 Aug 2025 21:04:05 +
Subject: [PATCH] [NFC] Leave a comment in `Local.cpp` about debug info &
s
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/154635
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/154635
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/154635
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154635
>From c25529714d12cdd03208c79eb82615bee75c14b4 Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Wed, 20 Aug 2025 15:04:49 -0700
Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto`
---
l
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From 2495127ea9388484e6abef63b9141155d486707e Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From 2495127ea9388484e6abef63b9141155d486707e Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I);
///
/// The moved instructions receive the insertion point debug location values
/// (DILocations) and their debug intrinsic instructions are removed.
+/// Selects and indirect calls keep their MD_prof metadata.
@@ -498,6 +498,7 @@ LLVM_ABI void dropDebugUsers(Instruction &I);
///
/// The moved instructions receive the insertion point debug location values
/// (DILocations) and their debug intrinsic instructions are removed.
+/// Selects and indirect calls keep their MD_prof metadata.
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Mircea Trofin (mtrofin)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/154635.diff
3 Files Affected:
- (modified) llvm/include/llvm/Transforms/Utils/Local.h (+1)
- (modified) llvm/lib/Transforms/Utils/Local
https://github.com/mtrofin ready_for_review
https://github.com/llvm/llvm-project/pull/154635
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154635
>From 15b033f3c0542ae3d7cd53f7e9c65b3d3e31290f Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Wed, 20 Aug 2025 15:04:49 -0700
Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto`
---
l
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154635
>From 15b033f3c0542ae3d7cd53f7e9c65b3d3e31290f Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Wed, 20 Aug 2025 15:04:49 -0700
Subject: [PATCH] [Local] preserve `MD_prof` in `hoistAllInstructionsInto`
---
l
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Mircea Trofin (mtrofin)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/154841.diff
3 Files Affected:
- (modified) llvm/include/llvm/IR/ProfDataUtils.h (+27)
- (modified) llvm/lib/Transforms/Utils/SimplifyCF
https://github.com/mtrofin ready_for_review
https://github.com/llvm/llvm-project/pull/154841
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From 24507f71fa438e7e799560aa1d6f370a3a8a7c43 Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
https://github.com/mtrofin updated
https://github.com/llvm/llvm-project/pull/154841
>From 24507f71fa438e7e799560aa1d6f370a3a8a7c43 Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Thu, 21 Aug 2025 13:54:49 -0700
Subject: [PATCH] [SimplifyCFG] Set branch weights when merging conditional
store
https://github.com/mtrofin edited
https://github.com/llvm/llvm-project/pull/154841
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/153276
>From 50e78d283fb2915a56cd3844f83d1b97a14bf2b8 Mon Sep 17 00:00:00 2001
From: Joao Saffran <{ID}+{username}@users.noreply.github.com>
Date: Tue, 12 Aug 2025 11:21:17 -0700
Subject: [PATCH 01/15] check if tabl
https://github.com/steakhal edited
https://github.com/llvm/llvm-project/pull/155284
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/steakhal edited
https://github.com/llvm/llvm-project/pull/155284
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (llvmbot)
Changes
Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70
6c9f1ce429809e5a91683ed6cef9a435047bebd1
Requested by: @steakhal
---
Full diff: https://github.com/llvm/llvm-project/pull/155284.diff
2 Files Affected:
- (modifi
llvmbot wrote:
@llvm/pr-subscribers-clang-static-analyzer-1
Author: None (llvmbot)
Changes
Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70
6c9f1ce429809e5a91683ed6cef9a435047bebd1
Requested by: @steakhal
---
Full diff: https://github.com/llvm/llvm-project/pull/155284.diff
2 Files Af
llvmbot wrote:
@Xazax-hun @Xazax-hun What do you think about merging this PR to the release
branch?
https://github.com/llvm/llvm-project/pull/155284
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/155284
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/155284
Backport 0a1eff2ecedcb11acb3e9d4b75ee1e1bebd69a70
6c9f1ce429809e5a91683ed6cef9a435047bebd1
Requested by: @steakhal
>From 5957089de666805deb1e1d442cf30f4f42d5f51b Mon Sep 17 00:00:00 2001
From: Balazs Benics
D
https://github.com/rampitec updated
https://github.com/llvm/llvm-project/pull/155222
>From eb6c9b54cb493b8cda31abaf6339a5f1c25b0cd9 Mon Sep 17 00:00:00 2001
From: Stanislav Mekhanoshin
Date: Mon, 25 Aug 2025 01:17:09 -0700
Subject: [PATCH] [AMDGPU] More radical feature initialization refactorin
@@ -433,6 +433,31 @@ class FactGeneratorVisitor : public
ConstStmtVisitor {
void VisitDeclRefExpr(const DeclRefExpr *DRE) { handleUse(DRE); }
+ void VisitCXXConstructExpr(const CXXConstructExpr *CCE) {
+if (!isGslPointerType(CCE->getType()))
+ return;
+
+if (
@@ -521,8 +563,75 @@ class FactGeneratorVisitor : public
ConstStmtVisitor {
}
private:
+ static bool isGslPointerType(QualType QT) {
+if (const auto *RD = QT->getAsCXXRecordDecl()) {
+ // We need to check the template definition for specializations.
+ if (aut
Author: Jonas Devlieghere
Date: 2025-08-25T12:33:47-07:00
New Revision: 78f99109489d5eff6aa33a82ad96c4bc3c762213
URL:
https://github.com/llvm/llvm-project/commit/78f99109489d5eff6aa33a82ad96c4bc3c762213
DIFF:
https://github.com/llvm/llvm-project/commit/78f99109489d5eff6aa33a82ad96c4bc3c762213.d
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public
ExtQualsTypeCommonBase {
/// Retrieves the CXXRecordDecl that this type refers to, either
/// because the type is a RecordType or because it is the injected-class-name
/// type of a class template or clas
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public
ExtQualsTypeCommonBase {
/// Retrieves the CXXRecordDecl that this type refers to, either
/// because the type is a RecordType or because it is the injected-class-name
/// type of a class template or clas
JDevlieghere wrote:
We should take https://github.com/llvm/llvm-project/pull/155153 for 21.x
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
https://github.com/vzakhari approved this pull request.
https://github.com/llvm/llvm-project/pull/152687
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
steakhal wrote:
> Do I understand that this document is primarily intended for the _users_ of
> the static analyzer? In that case I think it would be important to use the
> user-facing names of the checkers that are mentioned (e.g. write
> `unix.BlockInCriticalSection` instead of `BlockInCriti
steakhal wrote:
> Seems like this still have conflicts? do you have time to look at this now
> @steakhal ? otherwise I'll make an attempt at resolving it before the final
> release tomorrow, but it would be better if you did it since you know what to
> expect.
There was nothing serious. The d
https://github.com/steakhal updated
https://github.com/llvm/llvm-project/pull/154608
>From c522688652800329bf5beef9c378192826521f0d Mon Sep 17 00:00:00 2001
From: erichkeane
Date: Wed, 20 Aug 2025 13:37:33 -0700
Subject: [PATCH 1/2] Move rest of documentation problems that found their way
to t
https://github.com/nikic requested changes to this pull request.
We need to also either backport a fix for lldb tests or disable the relevant
tests. That needs to happen as part of this PR.
https://github.com/llvm/llvm-project/pull/155251
___
llvm-bra
@@ -513,6 +515,48 @@ Error
MetadataParser::parseRootSignatureElement(mcdxbc::RootSignatureDesc &RSD,
llvm_unreachable("Unhandled RootSignatureElementKind enum.");
}
+Error validateDescriptorTableSamplerMixin(mcdxbc::DescriptorTable Table,
+
https://github.com/skatrak updated
https://github.com/llvm/llvm-project/pull/137201
>From 9b5e75950a88e68aa49f5341f488eb6f57f58375 Mon Sep 17 00:00:00 2001
From: Sergio Afonso
Date: Tue, 22 Apr 2025 12:04:45 +0100
Subject: [PATCH 1/2] [MLIR][OpenMP] Simplify OpenMP device codegen
After removin
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
NagyDonat wrote:
Do I understand that this document is primarily intended for the _users_ of the
static analyzer? In that case I think it would be important to use the
user-facing names of the checkers that are mentioned (e.g. write
`unix.BlockInCriticalSection` instead of `BlockInCriticalSect
https://github.com/philnik777 edited
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: Nikolas Klauser (philnik777)
Changes
LLVM 20 contained an ABI break that can result in the size of
`std::unordered_{map,set,multimap,multiset}` and `std::deque` changing
when used with an allocator type that is empty and contains a base cl
https://github.com/philnik777 edited
https://github.com/llvm/llvm-project/pull/155251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/philnik777 created
https://github.com/llvm/llvm-project/pull/155251
LLVM 20 contained an ABI break that can result in the size of
`std::unordered_{map,set,multimap,multiset}` and `std::deque` changing
when used with an allocator type that is empty and contains a base class
tha
github-actions[bot] wrote:
@ldionne (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
h
https://github.com/mtrofin ready_for_review
https://github.com/llvm/llvm-project/pull/155250
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
tru wrote:
Merged - put up the other PR as soon as you can so I can merge that before the
final release.
https://github.com/llvm/llvm-project/pull/154945
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/c
mtrofin wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/155250?utm_source=stack-comment-downstack-mergeability-warning";
https://github.com/mtrofin created
https://github.com/llvm/llvm-project/pull/155250
LoopVectorize hasn't yet been addressed, new tests will fail.
Issue #147390
>From 8f22ea9789da8c307c2374765ae007815140be59 Mon Sep 17 00:00:00 2001
From: Mircea Trofin
Date: Mon, 25 Aug 2025 14:24:44 +
Sub
github-actions[bot] wrote:
@cjacek (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
ht
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154945
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154945
>From 5ec7fdf0c4e81c920890d636a7a25539f800c3af Mon Sep 17 00:00:00 2001
From: Nikolas Klauser
Date: Fri, 22 Aug 2025 15:25:50 +0200
Subject: [PATCH] [libc++] Add tests for the ABI break introduced by switching
to _L
Author: Nikolas Klauser
Date: 2025-08-25T16:33:44+02:00
New Revision: 5ec7fdf0c4e81c920890d636a7a25539f800c3af
URL:
https://github.com/llvm/llvm-project/commit/5ec7fdf0c4e81c920890d636a7a25539f800c3af
DIFF:
https://github.com/llvm/llvm-project/commit/5ec7fdf0c4e81c920890d636a7a25539f800c3af.dif
github-actions[bot] wrote:
@brad0 (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
htt
Author: Jacek Caban
Date: 2025-08-25T16:33:17+02:00
New Revision: c1ddc793bf4500756b9f5c8cbd17915a9cd26be0
URL:
https://github.com/llvm/llvm-project/commit/c1ddc793bf4500756b9f5c8cbd17915a9cd26be0
DIFF:
https://github.com/llvm/llvm-project/commit/c1ddc793bf4500756b9f5c8cbd17915a9cd26be0.diff
L
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154928
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154928
>From c1ddc793bf4500756b9f5c8cbd17915a9cd26be0 Mon Sep 17 00:00:00 2001
From: Jacek Caban
Date: Fri, 22 Aug 2025 04:05:19 -0700
Subject: [PATCH] [LLD][COFF] Set isUsedInRegularObj for target symbols in
resolveAltern
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/154897
>From b95cfa4014702c49b2cd58cfe22987f22369ce58 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Fri, 22 Aug 2025 02:02:52 -0400
Subject: [PATCH] [Driver] DragonFly does not support C11 threads (#154886)
(cherry picke
Author: Brad Smith
Date: 2025-08-25T16:32:43+02:00
New Revision: b95cfa4014702c49b2cd58cfe22987f22369ce58
URL:
https://github.com/llvm/llvm-project/commit/b95cfa4014702c49b2cd58cfe22987f22369ce58
DIFF:
https://github.com/llvm/llvm-project/commit/b95cfa4014702c49b2cd58cfe22987f22369ce58.diff
LO
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/154897
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
tru wrote:
Seems like this still have conflicts? do you have time to look at this now
@steakhal ? otherwise I'll make an attempt at resolving it before the final
release tomorrow, but it would be better if you did it since you know what to
expect.
https://github.com/llvm/llvm-project/pull/154
joker-eph wrote:
If you look at the diff and fold the MLIR folder, you'll see that there is
nothing outside of MLIR in this diff.
https://github.com/llvm/llvm-project/pull/154587
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
github-actions[bot] wrote:
@androm3da (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
Author: Sergei Barannikov
Date: 2025-08-25T16:29:15+02:00
New Revision: 4b4002045e4430fc6a9557c6323605a3c9e9f020
URL:
https://github.com/llvm/llvm-project/commit/4b4002045e4430fc6a9557c6323605a3c9e9f020
DIFF:
https://github.com/llvm/llvm-project/commit/4b4002045e4430fc6a9557c6323605a3c9e9f020.d
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/153926
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/153926
>From 4b4002045e4430fc6a9557c6323605a3c9e9f020 Mon Sep 17 00:00:00 2001
From: Sergei Barannikov
Date: Sat, 16 Aug 2025 05:13:43 +0300
Subject: [PATCH] [Hexagon] Add missing operand when disassembling Y4_crswap10
(#1
tru wrote:
@joker-eph I am going through them periodically. This is a big set of fixes,
hard to review one by one. Anything here touching outside MLIR?
https://github.com/llvm/llvm-project/pull/154587
___
llvm-branch-commits mailing list
llvm-branch-c
https://github.com/kparzysz approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/154740
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -2882,22 +2882,22 @@ class alignas(TypeAlignment) Type : public
ExtQualsTypeCommonBase {
/// Retrieves the CXXRecordDecl that this type refers to, either
/// because the type is a RecordType or because it is the injected-class-name
/// type of a class template or clas
https://github.com/matthias-springer created
https://github.com/llvm/llvm-project/pull/155244
Depends on #155242.
>From b217bce2ba7ecaf94d1e6364cac7b75f4ffb3f41 Mon Sep 17 00:00:00 2001
From: Matthias Springer
Date: Sat, 23 Aug 2025 10:36:37 +
Subject: [PATCH] [mlir][Transforms] Add suppo
https://github.com/atrosinenko updated
https://github.com/llvm/llvm-project/pull/139778
>From 1e5aef4e558dd99fa7eb6522c1573b0a6b588a4d Mon Sep 17 00:00:00 2001
From: Anatoly Trosinenko
Date: Tue, 13 May 2025 19:50:41 +0300
Subject: [PATCH] [BOLT] Gadget scanner: optionally assume auth traps on
https://github.com/atrosinenko updated
https://github.com/llvm/llvm-project/pull/139778
>From 1e5aef4e558dd99fa7eb6522c1573b0a6b588a4d Mon Sep 17 00:00:00 2001
From: Anatoly Trosinenko
Date: Tue, 13 May 2025 19:50:41 +0300
Subject: [PATCH] [BOLT] Gadget scanner: optionally assume auth traps on
1 - 100 of 128 matches
Mail list logo