[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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/

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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.

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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,

[llvm-branch-commits] [clang-tools-extra] [clangd] Add clangd 21 release notes (PR #152256)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang-tools-extra] [clangd] Add clangd 21 release notes (PR #152256)

2025-08-05 Thread Nathan Ridge via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [DirectX] Fix resource binding analysis incorrectly removing duplicates (PR #152253)

2025-08-05 Thread Helena Kotas via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [HLSL] Update DXIL resource metadata code to support resource arrays (PR #152254)

2025-08-05 Thread Helena Kotas via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [HLSL] Update DXIL resource metadata code to support resource arrays (PR #152254)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [DirectX] Fix resource binding analysis incorrectly removing duplicates (PR #152253)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [DirectX] Fix resource binding analysis incorrectly removing duplicates (PR #152253)

2025-08-05 Thread Helena Kotas via llvm-branch-commits
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

[llvm-branch-commits] [clang] [llvm] [DirectX] Validate if Textures/TypedBuffers are being bound in Root Signatures (PR #147573)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] [llvm] [DirectX] Validate if Textures/TypedBuffers are being bound in Root Signatures (PR #147573)

2025-08-05 Thread via 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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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:

[llvm-branch-commits] [clang] ee6afeb - [NFC] [C++20] [Modules] Lookup in cache before checking if the primary template is an exposure

2025-08-05 Thread Chuanqi Xu via llvm-branch-commits
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

[llvm-branch-commits] [libclc] af16fc2 - [libclc] Move mem_fence and barrier to clc library (#151446)

2025-08-05 Thread via llvm-branch-commits
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:

[llvm-branch-commits] [libclc] cda3c27 - Merge branch 'main' into revert-152096-revert-151622-libc-fix-integeration-alloc

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [llvm] a15b629 - Revert "Strip the full path from __FILE__ in the LDBG macro and keep only the filename (#150677)"

2025-08-05 Thread Jon Roelofs via llvm-branch-commits
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

[llvm-branch-commits] [llvm] 342bf58 - RuntimeLibcalls: Add entries for __security_check_cookie (#151843)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [libc] 1ced5ca - use jhuber6's patch

2025-08-05 Thread Schrodinger ZHU Yifan via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [NFC][HLSL][DirectX] Consolidate `ResourceClassNames` (PR #152213)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [NFC][HLSL][DirectX] Consolidate `ResourceClassNames` (PR #152213)

2025-08-05 Thread Finn Plummer via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [NFC][HLSL][DirectX] Consolidate `ResourceClassNames` (PR #152213)

2025-08-05 Thread Finn Plummer via 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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [polly] [IR] Add CallBr intrinsics support (PR #133907)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
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

[llvm-branch-commits] [libcxx] [libc++] Make benchmarks dry-run by default on the release branch (PR #126441)

2025-08-05 Thread Rainer Orth via 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 ___

[llvm-branch-commits] [libcxx] [libc++] Make benchmarks dry-run by default on the release branch (PR #126441)

2025-08-05 Thread Rainer Orth via llvm-branch-commits
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

[llvm-branch-commits] [libcxx] [libc++] Make benchmarks dry-run by default on the release branch (PR #126441)

2025-08-05 Thread Rainer Orth via 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

[llvm-branch-commits] [CI] Move platform specific test report titles to python (PR #152198)

2025-08-05 Thread Aiden Grossman via 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

[llvm-branch-commits] [CI] Refactor monolithic-* scripts to use common utils.sh (PR #152199)

2025-08-05 Thread Aiden Grossman via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
@@ -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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang] [llvm] [DirectX] Add Range Overlap validation to `DXILPostOptimizationValidation.cpp` (PR #148919)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] [llvm] [DirectX] Add Range Overlap validation to `DXILPostOptimizationValidation.cpp` (PR #148919)

2025-08-05 Thread via 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

[llvm-branch-commits] [clang] [clang-tools-extra] [PATCH 6/7] [clang] improve NestedNameSpecifier (PR #149748)

2025-08-05 Thread Erich Keane via llvm-branch-commits
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

[llvm-branch-commits] [clang] [clang-tools-extra] [PATCH 6/7] [clang] improve NestedNameSpecifier (PR #149748)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via 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

[llvm-branch-commits] [clang-tools-extra] [PATCH 4/7] [clang] Improve NestedNameSpecifier: clang-tools-extra changes (PR #148015)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang-tools-extra] [PATCH 4/7] [clang] Improve NestedNameSpecifier: clang-tools-extra changes (PR #148015)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] ELF: Introduce R_AARCH64_PATCHINST relocation type. (PR #133534)

2025-08-05 Thread Peter Collingbourne via llvm-branch-commits
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

[llvm-branch-commits] [lld] ELF: Introduce R_AARCH64_FUNCINIT64 relocation type. (PR #133531)

2025-08-05 Thread Peter Collingbourne via 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

[llvm-branch-commits] ELF: Introduce R_AARCH64_PATCHINST relocation type. (PR #133534)

2025-08-05 Thread Peter Collingbourne via 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

[llvm-branch-commits] [lld] ELF: Introduce R_AARCH64_FUNCINIT64 relocation type. (PR #133531)

2025-08-05 Thread Peter Collingbourne via 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

[llvm-branch-commits] [clang-tools-extra] [PATCH 4/7] [clang] Improve NestedNameSpecifier: clang-tools-extra changes (PR #148015)

2025-08-05 Thread Matheus Izvekov via 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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [clang-tools-extra] [PATCH 4/7] [clang] Improve NestedNameSpecifier: clang-tools-extra changes (PR #148015)

2025-08-05 Thread Matheus Izvekov via 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

[llvm-branch-commits] [clang] [lldb] [PATCH 7/7] [clang] improve NestedNameSpecifier: LLDB changes (PR #149949)

2025-08-05 Thread Matheus Izvekov via llvm-branch-commits
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

[llvm-branch-commits] [compiler-rt] f5aae27 - Revert "[compiler-rt][test] Apply CFLAGS from sanitizer_common to all tests (…"

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [AMDGPU] Baseline test for ptrtoaddr in lower-buffer-fat-pointers (PR #143812)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [SelectionDAG] Legalize <1 x T> vector types for atomic load (PR #148894)

2025-08-05 Thread Matt Arsenault via 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

[llvm-branch-commits] [llvm] [SelectionDAG] Legalize <1 x T> vector types for atomic load (PR #148894)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
@@ -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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Shilei Tian via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AMDGPU][UnifyDivergentExitNodes][StructurizeCFG] Add support for callbr instruction with basic inline-asm (PR #152161)

2025-08-05 Thread Robert Imschweiler via llvm-branch-commits
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

[llvm-branch-commits] [lldb] dc39743 - Revert "[lldb] Update JSONTransport to use MainLoop for reading. (#148300)"

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread Erich Keane via 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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] release/21.x: [C23] AST equivalence of attributes (#151196) (PR #152149)

2025-08-05 Thread via 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

[llvm-branch-commits] [llvm] ARM: Move more aeabi libcall config into tablegen (PR #152109)

2025-08-05 Thread Matt Arsenault via llvm-branch-commits
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

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread Tobias Hieta via llvm-branch-commits
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

[llvm-branch-commits] [clang] 3d6fb12 - [C23] More improved type compatibility for enumerations (#150946)

2025-08-05 Thread Aaron Ballman via 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

[llvm-branch-commits] [llvm] release/21.x: [Hexagon] Add nounwind to hexagon-strcpy.ll (#151293) (PR #151458)

2025-08-05 Thread Brian Cain via llvm-branch-commits
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

[llvm-branch-commits] [flang] [flang][OpenMP] Make OpenMPCriticalConstruct follow block structure (PR #152007)

2025-08-05 Thread Jack Styles via 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

[llvm-branch-commits] [flang] [flang][OpenMP] Make OpenMPCriticalConstruct follow block structure (PR #152007)

2025-08-05 Thread Krzysztof Parzyszek via 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" kparzysz wrote: Yes, this header was local to lib/Semantics, and I wante

[llvm-branch-commits] [lldb] [llvm] Backport Wasm Debugging changes to the LLVM 21.x Release (PR #151559)

2025-08-05 Thread David Spickett via llvm-branch-commits
@@ -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

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread Aaron Ballman via llvm-branch-commits
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 (#

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread Tobias Hieta via llvm-branch-commits
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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via llvm-branch-commits
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.

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread Tobias Hieta via llvm-branch-commits
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

[llvm-branch-commits] [lld] 400d8b0 - [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707)

2025-08-05 Thread via 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

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread Corentin Jabot via llvm-branch-commits
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

[llvm-branch-commits] [clang] [C23] More improved type compatibility for enumerations (PR #151199)

2025-08-05 Thread Corentin Jabot via 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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread Tobias Hieta via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AArch64][SME] Propagate desired ZA states in the MachineSMEABIPass (PR #149510)

2025-08-05 Thread Benjamin Maxwell via 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

[llvm-branch-commits] [llvm] [AArch64][SME] Avoid ZA save state changes in loops in MachineSMEABIPass (PR #149065)

2025-08-05 Thread Benjamin Maxwell via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AArch64][SME] Support agnostic ZA functions in the MachineSMEABIPass (PR #149064)

2025-08-05 Thread Benjamin Maxwell via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AArch64][SME] Support Windows/stack probes in MachineSMEABIPass (PR #149063)

2025-08-05 Thread Benjamin Maxwell via llvm-branch-commits
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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via llvm-branch-commits
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-

[llvm-branch-commits] [llvm] [AArch64][ISel] Select constructive SVE2 ext instruction (PR #151730)

2025-08-05 Thread Gaƫtan Bossu via llvm-branch-commits
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

[llvm-branch-commits] [llvm] [AArch64][ISel] Select constructive SVE2 ext instruction (PR #151730)

2025-08-05 Thread Gaƫtan Bossu via llvm-branch-commits
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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via 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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via llvm-branch-commits
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

[llvm-branch-commits] [lld] release/21.x: [Test] Adjust quoting in archive-thin.test for spaces in paths (#151707) (PR #152120)

2025-08-05 Thread via 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   2   3   >