@@ -9692,9 +9697,12 @@ flow goes after the call.
The output values of a '``callbr``' instruction are available both in the
the '``fallthrough``' block, and any '``indirect``' blocks(s).
-The only use of this today is to implement the "goto" feature of gcc inline
-assembly wher
@@ -120,3 +120,59 @@ landingpad:
%out = call i32 @llvm.callbr.landingpad.i32(i32 %0)
ret i32 %out
}
+
+declare void @llvm.amdgcn.kill(i1)
arsenm wrote:
Can you split the amdgcn intrinsic cases to a separate test file
https://github.com/llvm/llvm-project/
@@ -5360,13 +5391,94 @@ void SelectionDAGBuilder::visitTargetIntrinsic(const
CallInst &I,
}
}
+ if (auto Bundle = I.getOperandBundle(LLVMContext::OB_convergencectrl)) {
+auto *Token = Bundle->Inputs[0].get();
+SDValue ConvControlToken = getValue(Token);
+as
@@ -2789,20 +2789,35 @@ bool IRTranslator::translateCall(const User &U,
MachineIRBuilder &MIRBuilder) {
if (translateKnownIntrinsic(CI, ID, MIRBuilder))
return true;
+ TargetLowering::IntrinsicInfo Info;
+ // TODO: Add a GlobalISel version of getTgtMemIntrinsic.
+ bo
@@ -1,10 +1,7 @@
-; RUN: opt %loadNPMPolly '-passes=print'
-polly-detect-track-failures -disable-output -pass-remarks-missed=polly-detect
< %s 2>&1 | FileCheck %s --check-prefix=REMARK
-; RUN: opt %loadNPMPolly '-passes=print'
-polly-detect-track-failures -disable-output -stats
@@ -1,10 +1,7 @@
-; RUN: opt %loadNPMPolly '-passes=print'
-polly-detect-track-failures -disable-output -pass-remarks-missed=polly-detect
< %s 2>&1 | FileCheck %s --check-prefix=REMARK
-; RUN: opt %loadNPMPolly '-passes=print'
-polly-detect-track-failures -disable-output -stats
@@ -9674,7 +9678,8 @@ This instruction requires several arguments:
indicates the function accepts a variable number of arguments, the
extra arguments can be specified.
#. '``fallthrough label``': the label reached when the inline assembly's
- execution exits the bottom.
@@ -3006,10 +3024,41 @@ bool IRTranslator::translateInvoke(const User &U,
return true;
}
+/// The intrinsics currently supported by callbr are implicit control flow
+/// intrinsics such as amdgcn.kill.
bool IRTranslator::translateCallBr(const User &U,
llvmbot wrote:
@llvm/pr-subscribers-clang-tools-extra
Author: Nathan Ridge (HighCommander4)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/152256.diff
1 Files Affected:
- (modified) clang-tools-extra/docs/ReleaseNotes.rst (+50-12)
``diff
diff --git a/clang
https://github.com/HighCommander4 created
https://github.com/llvm/llvm-project/pull/152256
None
>From 70d54425379a71c9a2d27e2049e87b3d65bf0e0b Mon Sep 17 00:00:00 2001
From: Nathan Ridge
Date: Wed, 6 Aug 2025 02:30:14 -0400
Subject: [PATCH] [clangd] Add clangd 21 release notes
---
clang-tool
https://github.com/hekota updated
https://github.com/llvm/llvm-project/pull/152253
>From 3594a7af4e21daa461cb928fc1119bd09cc114e9 Mon Sep 17 00:00:00 2001
From: Helena Kotas
Date: Tue, 5 Aug 2025 22:27:42 -0700
Subject: [PATCH 1/2] [DirectX] Fix resource binding analysis incorrectly
removing d
https://github.com/hekota created
https://github.com/llvm/llvm-project/pull/152254
Closes #145422
Depends on #152253 and #152250
>From c9f45e919b3a305ca685f82512bdce3cf441458b Mon Sep 17 00:00:00 2001
From: Helena Kotas
Date: Tue, 5 Aug 2025 18:23:53 -0700
Subject: [PATCH] [HLSL] Update DXIL
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
@llvm/pr-subscribers-backend-directx
Author: Helena Kotas (hekota)
Changes
Closes #145422
Depends on #152253 and #152250
---
Full diff: https://github.com/llvm/llvm-project/pull/152254.diff
3 Files Affected:
- (modified) llvm/lib/Analy
llvmbot wrote:
@llvm/pr-subscribers-backend-directx
Author: Helena Kotas (hekota)
Changes
The resource binding analysis was incorrectly reducing the size of the
`Bindings` vector by one element after sorting and de-duplication. This led to
an inaccurate setting of the `HasOverlappingBind
https://github.com/hekota created
https://github.com/llvm/llvm-project/pull/152253
The resource binding analysis was incorrectly reducing the size of the
`Bindings` vector by one element after sorting and de-duplication. This led to
an inaccurate setting of the `HasOverlappingBinding` flag in
https://github.com/joaosaffran ready_for_review
https://github.com/llvm/llvm-project/pull/147573
___
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/147573
>From 01a558be2b36a6bb00e1027c4d042c7bacd4ed5a Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Mon, 7 Jul 2025 19:26:24 +
Subject: [PATCH 01/11] add validation
---
.../DXILPostOptimizationValidation.c
@@ -16476,12 +16476,12 @@ SITargetLowering::getRegForInlineAsmConstraint(const
TargetRegisterInfo *TRI_,
const TargetRegisterClass *RC = nullptr;
arsenm wrote:
Can you do this separately? You should be able to refer to labels in regular
inline asm
https:
Author: Chuanqi Xu
Date: 2025-08-06T10:00:03+08:00
New Revision: ee6afeb72ef2cee918c1338c926c481ad36aa915
URL:
https://github.com/llvm/llvm-project/commit/ee6afeb72ef2cee918c1338c926c481ad36aa915
DIFF:
https://github.com/llvm/llvm-project/commit/ee6afeb72ef2cee918c1338c926c481ad36aa915.diff
LO
Author: Wenju He
Date: 2025-08-06T09:49:28+08:00
New Revision: af16fc2e2a50c1cbac49726ea70739ad6e193729
URL:
https://github.com/llvm/llvm-project/commit/af16fc2e2a50c1cbac49726ea70739ad6e193729
DIFF:
https://github.com/llvm/llvm-project/commit/af16fc2e2a50c1cbac49726ea70739ad6e193729.diff
LOG:
Author: Schrodinger ZHU Yifan
Date: 2025-08-05T22:05:02-04:00
New Revision: cda3c279733bc534550f757162e65794c288b981
URL:
https://github.com/llvm/llvm-project/commit/cda3c279733bc534550f757162e65794c288b981
DIFF:
https://github.com/llvm/llvm-project/commit/cda3c279733bc534550f757162e65794c288b9
Author: Jon Roelofs
Date: 2025-08-05T18:47:46-07:00
New Revision: a15b629527a975ec592c95d69d04ef3537915d1d
URL:
https://github.com/llvm/llvm-project/commit/a15b629527a975ec592c95d69d04ef3537915d1d
DIFF:
https://github.com/llvm/llvm-project/commit/a15b629527a975ec592c95d69d04ef3537915d1d.diff
L
Author: Matt Arsenault
Date: 2025-08-06T10:26:36+09:00
New Revision: 342bf58f93a72a675183c18b42ae811c635dda37
URL:
https://github.com/llvm/llvm-project/commit/342bf58f93a72a675183c18b42ae811c635dda37
DIFF:
https://github.com/llvm/llvm-project/commit/342bf58f93a72a675183c18b42ae811c635dda37.diff
Author: Schrodinger ZHU Yifan
Date: 2025-08-05T21:58:53-04:00
New Revision: 1ced5ca71a26c912e855fc6fce66ddefa099d698
URL:
https://github.com/llvm/llvm-project/commit/1ced5ca71a26c912e855fc6fce66ddefa099d698
DIFF:
https://github.com/llvm/llvm-project/commit/1ced5ca71a26c912e855fc6fce66ddefa099d6
llvmbot wrote:
@llvm/pr-subscribers-llvm-binary-utilities
Author: Finn Plummer (inbelic)
Changes
During the split of the various `Frontend/HLSL` libraries, there was an
oversight to duplicate the `ResourceClassNames` definitions. This commit simply
consolidates the definitions into `DXCo
https://github.com/inbelic ready_for_review
https://github.com/llvm/llvm-project/pull/152213
___
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/inbelic created
https://github.com/llvm/llvm-project/pull/152213
During the split of the various `Frontend/HLSL` libraries, there was an
oversight to duplicate the `ResourceClassNames` definitions. This commit simply
consolidates the definitions into `DXContainer.h` as `getR
@@ -2863,6 +2834,53 @@ bool IRTranslator::translateCall(const User &U,
MachineIRBuilder &MIRBuilder) {
return true;
}
+bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) {
ro-i wrote:
done
https://github.com/llvm/llvm-project/pu
ro-i wrote:
Rebased on https://github.com/llvm/llvm-project/pull/152161 (+ some small
cleanups)
https://github.com/llvm/llvm-project/pull/133907
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mai
https://github.com/ro-i edited https://github.com/llvm/llvm-project/pull/133907
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
rorth wrote:
I've just seen the same issue in a 21.1.0 rc build on Ubuntu 22.04 (229
failures in `llvm-libc++-shared.cfg.in :: benchmarks`). It seems the LLVM 21
release needs the same fix/workaround.
https://github.com/llvm/llvm-project/pull/126441
___
https://github.com/rorth milestoned
https://github.com/llvm/llvm-project/pull/126441
___
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/rorth demilestoned
https://github.com/llvm/llvm-project/pull/126441
___
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/boomanaiden154 created
https://github.com/llvm/llvm-project/pull/152198
This patch moves the platform specific test report titles to the
generate_test_report_github.py script. This means that the functions in
the monolithic-* scripts are exactly the same now and can be moved i
https://github.com/boomanaiden154 created
https://github.com/llvm/llvm-project/pull/152199
This patch refactors big chunks of the common functionality shared
between monolithic-linux.sh and monolithic-windows.sh to a separate
script, utils.sh, that is then sourced in both of the files. This make
https://github.com/ro-i updated https://github.com/llvm/llvm-project/pull/152161
>From 47408c30af9b0dd6b4c791130aad4a91efee8949 Mon Sep 17 00:00:00 2001
From: Robert Imschweiler
Date: Tue, 5 Aug 2025 10:24:07 -0500
Subject: [PATCH 1/2] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add
suppo
ro-i wrote:
> StructurizeCFG is very sensitive to changes. Could you do a full CQE cycles
> for this?
Will be done after the reviews before the merge š
https://github.com/llvm/llvm-project/pull/152161
___
llvm-branch-commits mailing list
llvm-branch
@@ -16476,12 +16476,12 @@ SITargetLowering::getRegForInlineAsmConstraint(const
TargetRegisterInfo *TRI_,
const TargetRegisterClass *RC = nullptr;
ro-i wrote:
No, this is actually important to support the asm label constraint "!i". This
should fall through
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From 4abdd2322b0336c72cf3c700710504b3ac6e0ef6 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
https://github.com/joaosaffran closed
https://github.com/llvm/llvm-project/pull/148919
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
joaosaffran wrote:
I will abandon this PR, since parent PR has changed significantly.
https://github.com/llvm/llvm-project/pull/148919
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
https://github.com/erichkeane approved this pull request.
I did a run through this a while back and didn't see anything concerning, but
getting a deep enough dive on this is unfortunately/obviously quite difficult.
So for now, approve, though I can imagine these getting pulled out if they
caus
mizvekov wrote:
ping, this is the only patch which is still unreviewed.
https://github.com/llvm/llvm-project/pull/149748
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch
mizvekov wrote:
@Michael137 this is ready for another look.
https://github.com/llvm/llvm-project/pull/149949
___
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/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From 552fc80db7be58372f489cff1d7764894dad0649 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/148015
>From 3126c2c819a94333f6cf96268e22f8897142f43b Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Thu, 10 Jul 2025 14:07:34 -0300
Subject: [PATCH] [PATCH 4/7] [clang] Improve NestedNameSpecifier:
clang-tools
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From 24638a411b4874d9621157639a34f953f464fc5f Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/148015
>From 3126c2c819a94333f6cf96268e22f8897142f43b Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Thu, 10 Jul 2025 14:07:34 -0300
Subject: [PATCH] [PATCH 4/7] [clang] Improve NestedNameSpecifier:
clang-tools
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From 24638a411b4874d9621157639a34f953f464fc5f Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
https://github.com/pcc edited https://github.com/llvm/llvm-project/pull/133534
___
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/pcc edited https://github.com/llvm/llvm-project/pull/133531
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
pcc wrote:
psABI update landed, this is now unblocked.
https://github.com/llvm/llvm-project/pull/133534
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
pcc wrote:
psABI update landed, this is now unblocked.
https://github.com/llvm/llvm-project/pull/133531
___
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/mizvekov updated
https://github.com/llvm/llvm-project/pull/148015
>From 796007b5d7062f6ba34b6ddcf52d791e142d2a95 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Thu, 10 Jul 2025 14:07:34 -0300
Subject: [PATCH] [PATCH 4/7] [clang] Improve NestedNameSpecifier:
clang-tools
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From b894c910abf8b7f21c3c501de0c6dfb947a2e922 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/148015
>From 796007b5d7062f6ba34b6ddcf52d791e142d2a95 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Thu, 10 Jul 2025 14:07:34 -0300
Subject: [PATCH] [PATCH 4/7] [clang] Improve NestedNameSpecifier:
clang-tools
https://github.com/mizvekov updated
https://github.com/llvm/llvm-project/pull/149949
>From b894c910abf8b7f21c3c501de0c6dfb947a2e922 Mon Sep 17 00:00:00 2001
From: Matheus Izvekov
Date: Mon, 21 Jul 2025 22:00:01 -0300
Subject: [PATCH] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes
Author: gulfemsavrun
Date: 2025-08-05T10:02:21-07:00
New Revision: f5aae27909984a0747dce08e7031f843f6693103
URL:
https://github.com/llvm/llvm-project/commit/f5aae27909984a0747dce08e7031f843f6693103
DIFF:
https://github.com/llvm/llvm-project/commit/f5aae27909984a0747dce08e7031f843f6693103.diff
https://github.com/arsenm approved this pull request.
https://github.com/llvm/llvm-project/pull/143812
___
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/arsenm commented:
lgtm with the extension type preserved
https://github.com/llvm/llvm-project/pull/148894
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-b
@@ -455,6 +458,18 @@ SDValue
DAGTypeLegalizer::ScalarizeVecRes_INSERT_VECTOR_ELT(SDNode *N) {
return Op;
}
+SDValue DAGTypeLegalizer::ScalarizeVecRes_ATOMIC_LOAD(AtomicSDNode *N) {
+ SDValue Result = DAG.getAtomicLoad(
+ ISD::NON_EXTLOAD, SDLoc(N), N->getMemoryVT().ge
@@ -0,0 +1,56 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
UTC_ARGS: --version 5
+; RUN: opt -S -structurizecfg %s -o - | FileCheck %s
arsenm wrote:
```suggestion
```
Don't need to bother with old PM run lines
https://github.c
@@ -16476,12 +16476,12 @@ SITargetLowering::getRegForInlineAsmConstraint(const
TargetRegisterInfo *TRI_,
const TargetRegisterClass *RC = nullptr;
arsenm wrote:
Everything in this file looks like unrelated style changes
https://github.com/llvm/llvm-project
shiltian wrote:
StructurizeCFG is very sensitive to changes. Could you do a full CQE cycles for
this?
https://github.com/llvm/llvm-project/pull/152161
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-b
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Robert Imschweiler (ro-i)
Changes
Finishes adding basic inline-asm callbr support for AMDGPU, started by
https://github.com/llvm/llvm-project/pull/149308.
---
Patch is 42.29 KiB, truncated to 20.00 KiB below, full version:
http
https://github.com/ro-i created https://github.com/llvm/llvm-project/pull/152161
Finishes adding basic inline-asm callbr support for AMDGPU, started by
https://github.com/llvm/llvm-project/pull/149308.
>From 47408c30af9b0dd6b4c791130aad4a91efee8949 Mon Sep 17 00:00:00 2001
From: Robert Imschwei
Author: John Harrison
Date: 2025-08-05T08:06:09-07:00
New Revision: dc397435f1a15f2cef43123418ca16e27d516eb8
URL:
https://github.com/llvm/llvm-project/commit/dc397435f1a15f2cef43123418ca16e27d516eb8
DIFF:
https://github.com/llvm/llvm-project/commit/dc397435f1a15f2cef43123418ca16e27d516eb8.diff
https://github.com/Sirraide approved this pull request.
https://github.com/llvm/llvm-project/pull/152149
___
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/erichkeane approved this pull request.
Ooof, yeah, we have to do this for the release.
https://github.com/llvm/llvm-project/pull/152149
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cg
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (llvmbot)
Changes
Backport 30a5d56
Requested by: @AaronBallman
---
Full diff: https://github.com/llvm/llvm-project/pull/152149.diff
2 Files Affected:
- (modified) clang/lib/AST/ASTStructuralEquivalence.cpp (+4-2)
- (modified) cla
llvmbot wrote:
@Sirraide What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/152149
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/list
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/152149
___
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/152149
Backport 30a5d56
Requested by: @AaronBallman
>From 7fa2cd5f8dc6b619895289e7e53dff0974c19fd5 Mon Sep 17 00:00:00 2001
From: Aaron Ballman
Date: Tue, 29 Jul 2025 14:09:02 -0400
Subject: [PATCH] [C23] AST equival
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/152109
>From 027cfc35c3057f5a08b098c58a0daa734262e6d4 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Tue, 5 Aug 2025 10:55:11 +0900
Subject: [PATCH] ARM: Move more aeabi libcall config into tablegen
---
llvm/incl
github-actions[bot] wrote:
@AaronBallman (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
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/151199
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Aaron Ballman
Date: 2025-08-05T08:24:28-04:00
New Revision: 3d6fb12dfcef05407439580491430c376489d6a5
URL:
https://github.com/llvm/llvm-project/commit/3d6fb12dfcef05407439580491430c376489d6a5
DIFF:
https://github.com/llvm/llvm-project/commit/3d6fb12dfcef05407439580491430c376489d6a5.diff
https://github.com/androm3da approved this pull request.
https://github.com/llvm/llvm-project/pull/151458
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -34,6 +34,7 @@
#include "flang/Parser/openmp-utils.h"
#include "flang/Parser/parse-tree.h"
#include "flang/Semantics/openmp-directive-sets.h"
+#include "flang/Semantics/openmp-utils.h"
Stylie777 wrote:
Makes sense, thanks.
https://github.com/llvm/llvm-proj
@@ -34,6 +34,7 @@
#include "flang/Parser/openmp-utils.h"
#include "flang/Parser/parse-tree.h"
#include "flang/Semantics/openmp-directive-sets.h"
+#include "flang/Semantics/openmp-utils.h"
kparzysz wrote:
Yes, this header was local to lib/Semantics, and I wante
@@ -326,6 +326,8 @@ Changes to LLDB
RISC-V code with `disassemble`'s `--byte` option.
* LLDB added native support for the Model Context Protocol (MCP). An MCP
server can be started with the `protocol-server start MCP` command.
+* LLDB can now set breakpoints, show backtrac
https://github.com/AaronBallman updated
https://github.com/llvm/llvm-project/pull/151199
>From 3d6fb12dfcef05407439580491430c376489d6a5 Mon Sep 17 00:00:00 2001
From: Aaron Ballman
Date: Tue, 29 Jul 2025 13:30:52 -0400
Subject: [PATCH] [C23] More improved type compatibility for enumerations
(#
tru wrote:
Pressing update branch won't rebase it here. You need to manually rebase the
branch to get rid of the merge commits. If you check the commits tab you'll see
it has two merge commits that contains the fixes for the merge. But if you
manually checkout the PR and try to rebase it so th
github-actions[bot] wrote:
@bd1976bris (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.
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/152120
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: bd1976bris
Date: 2025-08-05T10:51:55Z
New Revision: 400d8b067591d7052f04c6486d5ec533871ef29c
URL:
https://github.com/llvm/llvm-project/commit/400d8b067591d7052f04c6486d5ec533871ef29c
DIFF:
https://github.com/llvm/llvm-project/commit/400d8b067591d7052f04c6486d5ec533871ef29c.diff
LOG: [T
cor3ntin wrote:
@tru hum, it seems fine/not out of date?
https://github.com/llvm/llvm-project/pull/151199
___
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/cor3ntin updated
https://github.com/llvm/llvm-project/pull/151199
>From 44f1bdb4fb373706069c6154fb85ef03c66d5368 Mon Sep 17 00:00:00 2001
From: Aaron Ballman
Date: Tue, 29 Jul 2025 13:30:52 -0400
Subject: [PATCH] [C23] More improved type compatibility for enumerations
(#1509
https://github.com/tru approved this pull request.
https://github.com/llvm/llvm-project/pull/152120
___
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/MacDue updated
https://github.com/llvm/llvm-project/pull/149510
>From 0497093e683ab2b167060bbab1b19973e8422e1e Mon Sep 17 00:00:00 2001
From: Benjamin Maxwell
Date: Tue, 15 Jul 2025 17:00:04 +
Subject: [PATCH] [AArch64][SME] Propagate desired ZA states in the
MachineSMEA
https://github.com/MacDue updated
https://github.com/llvm/llvm-project/pull/149065
>From f182168eed68f0f61e2417fa7865e0dab233ba80 Mon Sep 17 00:00:00 2001
From: Benjamin Maxwell
Date: Tue, 15 Jul 2025 11:48:03 +
Subject: [PATCH] [AArch64][SME] Avoid ZA save state changes in loops in
Machin
https://github.com/MacDue updated
https://github.com/llvm/llvm-project/pull/149064
>From 323b82187d616ec0f45791f348a776abd9c7f9d8 Mon Sep 17 00:00:00 2001
From: Benjamin Maxwell
Date: Tue, 15 Jul 2025 11:47:48 +
Subject: [PATCH] [AArch64][SME] Support agnostic ZA functions in the
MachineSM
https://github.com/MacDue updated
https://github.com/llvm/llvm-project/pull/149063
>From 5539ca71f5adca55780ec1321102a87700c136b8 Mon Sep 17 00:00:00 2001
From: Benjamin Maxwell
Date: Tue, 15 Jul 2025 11:47:39 +
Subject: [PATCH 1/2] [AArch64][SME] Support Windows/stack probes in
MachineSME
https://github.com/bd1976bris approved this pull request.
LGTM. @tru this needs to be merged ASAP. Without this there will be a failure
on some build bots from https://github.com/llvm/llvm-project/pull/151707 which
was recently merged onto the release branch, see:
https://github.com/llvm/llvm-
gbossu wrote:
Closing, I'll work on supporting `movprfx` for `ext` instead.
https://github.com/llvm/llvm-project/pull/151730
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-br
https://github.com/gbossu closed
https://github.com/llvm/llvm-project/pull/151730
___
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-lld-elf
Author: None (llvmbot)
Changes
Backport 73ce0aca72348a80dc2c2175516a0993ab8d6be3
Requested by: @bd1976bris
---
Full diff: https://github.com/llvm/llvm-project/pull/152120.diff
1 Files Affected:
- (modified) lld/test/ELF/dtlto/archive-thin.te
llvmbot wrote:
@bd1976bris What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/152120
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/152120
___
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/152120
Backport 73ce0aca72348a80dc2c2175516a0993ab8d6be3
Requested by: @bd1976bris
>From 400d8b067591d7052f04c6486d5ec533871ef29c Mon Sep 17 00:00:00 2001
From: bd1976bris
Date: Fri, 1 Aug 2025 16:09:01 +0100
Subject
1 - 100 of 207 matches
Mail list logo