[llvm-branch-commits] [clang] release/20.x: [clang][CodeGen] `sret` args should always point to the `alloca` AS, so use that (#114062) (PR #127552)

2025-02-17 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-risc-v Author: None (llvmbot) Changes Backport 39ec9de Requested by: @arsenm --- Patch is 79.56 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/127552.diff 35 Files Affected: - (modified) clang/in

[llvm-branch-commits] [flang] release/20.x: flang: Fix build with latest libc++ (#127362) (PR #127805)

2025-02-19 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/127805 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [flang] release/20.x: flang: Fix build with latest libc++ (#127362) (PR #127805)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-runtime Author: None (llvmbot) Changes Backport 2b340c10a611d929fee25e6222909c8915e3d6b6 Requested by: @tstellar --- Full diff: https://github.com/llvm/llvm-project/pull/127805.diff 1 Files Affected: - (modified) flang/runtime/io-api-minimal.c

[llvm-branch-commits] [flang] release/20.x: flang: Fix build with latest libc++ (#127362) (PR #127805)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @ldionne What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/127805 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listi

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Avoid including on arbitrary platforms (#125587) (PR #127310)

2025-02-19 Thread via llvm-branch-commits
https://github.com/llvmbot updated https://github.com/llvm/llvm-project/pull/127310 >From 876a5c9e5905a9666748632afba1ff83200ed95b Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Sat, 15 Feb 2025 10:54:00 +0100 Subject: [PATCH] [libc++] Avoid including on arbitrary platforms (#125587) This

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Avoid including on arbitrary platforms (#125587) (PR #127310)

2025-02-19 Thread via llvm-branch-commits
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

[llvm-branch-commits] [clang] [lldb] Backport: [clang] fix P3310 overload resolution flag propagation (#125791) (PR #127831)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Matheus Izvekov (mizvekov) Changes Class templates might be only instantiated when they are required to be complete, but checking the template args against the primary template is immediate. This result is cached so that later when the cl

[llvm-branch-commits] [clang] [lldb] Backport: [clang] fix P3310 overload resolution flag propagation (#125791) (PR #127831)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-modules Author: Matheus Izvekov (mizvekov) Changes Class templates might be only instantiated when they are required to be complete, but checking the template args against the primary template is immediate. This result is cached so that later wh

[llvm-branch-commits] [flang] [Flang][OpenMP] Allow host evaluation of loop bounds for distribute (PR #127822)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir Author: Sergio Afonso (skatrak) Changes This patch adds `target teams distribute [simd]` and equivalent construct nests to the list of cases where loop bounds can be evaluated in the host, as they represent kernels for which the trip co

[llvm-branch-commits] [llvm] [OpenMPIRBuilder] Add support for distribute constructs (PR #127816)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp Author: Sergio Afonso (skatrak) Changes This patch adds the `OpenMPIRBuilder::createDistribute()` function and updates `OpenMPIRBuilder::applyStaticWorkshareLoop()` in preparation for adding `distribute` support to flang. --- Full diff: h

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Support target SPMD (PR #127821)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir-llvm Author: Sergio Afonso (skatrak) Changes This patch implements MLIR to LLVM IR translation of host-evaluated loop bounds, completing initial support for `target teams distribute parallel do [simd]` and `target teams distribute [simd]`. --- Fu

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Host lowering of standalone distribute (PR #127817)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp Author: Sergio Afonso (skatrak) Changes This patch adds MLIR to LLVM IR translation support for standalone `omp.distribute` operations, as well as `distribute simd` through ignoring SIMD information (similarly to `do/for simd`). --- Full

[llvm-branch-commits] [llvm] [OpenMPIRBuilder] Add support for distribute-parallel-for/do constructs (PR #127818)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp Author: Sergio Afonso (skatrak) Changes This patch adds codegen for `kmpc_dist_for_static_init` runtime calls, used to support worksharing a single loop across teams and threads. This can be used to implement `distribute parallel for/do` s

[llvm-branch-commits] [llvm] [OpenMPIRBuilder] Split calculation of canonical loop trip count, NFC (PR #127820)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp Author: Sergio Afonso (skatrak) Changes This patch splits off the calculation of canonical loop trip counts from the creation of canonical loops. This makes it possible to reuse this logic to, for instance, populate the `__tgt_target_kerne

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Support target SPMD (PR #127821)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir Author: Sergio Afonso (skatrak) Changes This patch implements MLIR to LLVM IR translation of host-evaluated loop bounds, completing initial support for `target teams distribute parallel do [simd]` and `target teams distribute [simd]`. --- Full di

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Host lowering of distribute-parallel-do/for (PR #127819)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir-llvm @llvm/pr-subscribers-mlir-openmp Author: Sergio Afonso (skatrak) Changes This patch adds support for translating composite `omp.parallel` + `omp.distribute` + `omp.wsloop` loops to LLVM IR on the host. This is done by passing an updated `Work

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Host lowering of distribute-parallel-do/for (PR #127819)

2025-02-19 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir Author: Sergio Afonso (skatrak) Changes This patch adds support for translating composite `omp.parallel` + `omp.distribute` + `omp.wsloop` loops to LLVM IR on the host. This is done by passing an updated `WorksharingLoopType` to the call to `apply

[llvm-branch-commits] [flang] release/20.x: flang: Fix build with latest libc++ (#127362) (PR #127805)

2025-02-19 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/127805 Backport 2b340c10a611d929fee25e6222909c8915e3d6b6 Requested by: @tstellar >From 2b70b17d30744ee6720eb2645ef8b61e043ed295 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 19 Feb 2025 06:53:30 -0800 Subjec

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard include of with __has_include (#127691) (PR #127842)

2025-02-19 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/127842 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard include of with __has_include (#127691) (PR #127842)

2025-02-19 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/127842 Backport 2c8b1248513624e89b510397224f0f405116f3d3 Requested by: @ldionne >From 315226cf7b7751303615984ec3d84664d156 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Wed, 19 Feb 2025 08:21:56 -0500 Subject

[llvm-branch-commits] [llvm] release/20.x: [libc++][ci] Update the Windows toolchains to Clang 19 (#129232) (PR #129303)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @frederick-vs-ja What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129303 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailm

[llvm-branch-commits] [clang] release/20.x: [SystemZ] Add header guard macros to vecintrin.h (#129170) (PR #129286)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: None (llvmbot) Changes Backport ddaa5b3bfb2980f79c6f277608ad33a6efe8d554 Requested by: @uweigand --- Full diff: https://github.com/llvm/llvm-project/pull/129286.diff 1 Files Affected: - (modified) clang/lib/Headers/vecintrin.h (+5)

[llvm-branch-commits] [llvm] release/20.x: [libc++][ci] Update the Windows toolchains to Clang 19 (#129232) (PR #129303)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129303 Backport e6a0ee3d1d12c9c02c1a361109e282d18dd2430c Requested by: @mstorsjo >From fa99b8190f951f57bc00466790790360ac3b2208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 28 Feb 2025

[llvm-branch-commits] [lldb] release/20.x: [lldb] Add terminfo dependency for ncurses support (PR #129341)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Jordan R AW (ajordanr-google) Changes Backport 8d017e6c0178f2628b246c18b2a634909815e54f eec242aa97c8d153574923f8237754ca3fa6f0a6 Requested by: @DavidSpickett --- Full diff: https://github.com/llvm/llvm-project/pull/129341.diff 1 Files

[llvm-branch-commits] [lldb] release/20.x: [lldb] Fix manual CURSES_LIBRARIES tinfo finding (#128245) (PR #129342)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/129342 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [lldb] release/20.x: [lldb] Fix manual CURSES_LIBRARIES tinfo finding (#128245) (PR #129342)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: None (llvmbot) Changes Backport 8fff0c181f26a5e8b2344c061ebf2559118b1160 bb6a273d9ab9ee90dbb957e541f4d810fffb22ee Requested by: @ajordanr-google --- Full diff: https://github.com/llvm/llvm-project/pull/129342.diff 1 Files Affected: - (

[llvm-branch-commits] [lldb] release/20.x: [lldb] Fix manual CURSES_LIBRARIES tinfo finding (#128245) (PR #129342)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @JDevlieghere @JDevlieghere What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129342 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/c

[llvm-branch-commits] [llvm] release/20.x: [libc++][ci] Update the Windows toolchains to Clang 19 (#129232) (PR #129303)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-libcxx Author: None (llvmbot) Changes Backport e6a0ee3d1d12c9c02c1a361109e282d18dd2430c Requested by: @mstorsjo --- Full diff: https://github.com/llvm/llvm-project/pull/129303.diff 1 Files Affected: - (modified) .github/workflows/libcxx-build-and-te

[llvm-branch-commits] [llvm] f2cad4a - Revert "[RISCV] Simplify getStackAdjBase. NFC (#129281)"

2025-02-28 Thread via llvm-branch-commits
Author: Craig Topper Date: 2025-02-28T14:49:49-08:00 New Revision: f2cad4a242ebe98122c5667d24aca8c80d2e0de4 URL: https://github.com/llvm/llvm-project/commit/f2cad4a242ebe98122c5667d24aca8c80d2e0de4 DIFF: https://github.com/llvm/llvm-project/commit/f2cad4a242ebe98122c5667d24aca8c80d2e0de4.diff

[llvm-branch-commits] [llvm] release/20.x: [Hexagon] Handle Call Operand vxi1 in Hexagon Backend (#128027) (PR #129311)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-hexagon Author: None (llvmbot) Changes Backport 37559c8401cf9236d561eebd75bd3d70be6ab723 Requested by: @androm3da --- Full diff: https://github.com/llvm/llvm-project/pull/129311.diff 7 Files Affected: - (modified) llvm/lib/Target/Hexagon/Hex

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard contents on _LIBCPP_HAS_LOCALIZATION (#129112) (PR #129305)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-libcxx Author: None (llvmbot) Changes Backport fda7373daf5790833101c504be1c749bbb0fceb8 Requested by: @ldionne --- Full diff: https://github.com/llvm/llvm-project/pull/129305.diff 1 Files Affected: - (modified) libcxx/include/codecvt (+18-13) ```

[llvm-branch-commits] [llvm] release/20.x: [Hexagon] Handle Call Operand vxi1 in Hexagon Backend (#128027) (PR #129311)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129311 Backport 37559c8401cf9236d561eebd75bd3d70be6ab723 Requested by: @androm3da >From 9781f32c0bbf1269d039c4eb3e1bd5dd774b09c8 Mon Sep 17 00:00:00 2001 From: pkarveti Date: Tue, 25 Feb 2025 21:56:28 +0530 Subject:

[llvm-branch-commits] [llvm] release/20.x: [Hexagon] Handle Call Operand vxi1 in Hexagon Backend (#128027) (PR #129311)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @iajbar What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129311 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [llvm] release/20.x: [Hexagon] Handle Call Operand vxi1 in Hexagon Backend (#128027) (PR #129311)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/129311 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] release/20.x: [LAA] Consider accessed addrspace when mapping underlying obj to access. (#129087) (PR #129317)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-analysis Author: Florian Hahn (fhahn) Changes Backport 275baedfde9dcd344bc4f11f552b046a69a4bf3f In some cases, it is possible for the same underlying object to be accessed via pointers to different address spaces. This could lead to pointers from

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard contents on _LIBCPP_HAS_LOCALIZATION (#129112) (PR #129305)

2025-02-28 Thread via llvm-branch-commits
llvmbot wrote: @philnik777 What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129305 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/li

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard contents on _LIBCPP_HAS_LOCALIZATION (#129112) (PR #129305)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/129305 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [libcxx] release/20.x: [libc++] Guard contents on _LIBCPP_HAS_LOCALIZATION (#129112) (PR #129305)

2025-02-28 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129305 Backport fda7373daf5790833101c504be1c749bbb0fceb8 Requested by: @ldionne >From 8e4324712f1af8983881d82b949eac93eecb9633 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Fri, 28 Feb 2025 15:41:44 -0500 Subject

[llvm-branch-commits] [lldb] release/20.x: [lldb] Fix manual CURSES_LIBRARIES tinfo finding (#128245) (PR #129342)

2025-03-02 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129342 Backport 8fff0c181f26a5e8b2344c061ebf2559118b1160 bb6a273d9ab9ee90dbb957e541f4d810fffb22ee Requested by: @ajordanr-google >From 7569564987598d41273cbe235da6f957b71c72f7 Mon Sep 17 00:00:00 2001 From: Jordan R

[llvm-branch-commits] [lldb] 5209e46 - Revert "[lldb][HostInfoMacOSX] Try to use DW_AT_LLVM_sysroot instead of xcrun…"

2025-03-03 Thread via llvm-branch-commits
Author: Augusto Noronha Date: 2025-03-03T16:33:56-08:00 New Revision: 5209e46dbedad362773027266ab05edc816c86da URL: https://github.com/llvm/llvm-project/commit/5209e46dbedad362773027266ab05edc816c86da DIFF: https://github.com/llvm/llvm-project/commit/5209e46dbedad362773027266ab05edc816c86da.dif

[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Add Metadata generation of Root Signatures for Attr (PR #125131)

2025-03-07 Thread via llvm-branch-commits
@@ -0,0 +1,31 @@ +// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -emit-llvm -o - %s | FileCheck %s + +// CHECK: !dx.rootsignatures = !{![[#FIRST_ENTRY:]], ![[#SECOND_ENTRY:]]} + +// CHECK: ![[#FIRST_ENTRY]] = !{ptr @FirstEntry, ![[#EMPTY:]]} +// CHECK: ![[#EMPTY]] = !{

[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Add Metadata generation of Root Signatures for Attr (PR #125131)

2025-03-07 Thread via llvm-branch-commits
@@ -0,0 +1,31 @@ +// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -emit-llvm -o - %s | FileCheck %s + +// CHECK: !dx.rootsignatures = !{![[#FIRST_ENTRY:]], ![[#SECOND_ENTRY:]]} + +// CHECK: ![[#FIRST_ENTRY]] = !{ptr @FirstEntry, ![[#EMPTY:]]} +// CHECK: ![[#EMPTY]] = !{

[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Add Metadata generation of Root Signatures for Attr (PR #125131)

2025-03-07 Thread via llvm-branch-commits
@@ -14,10 +14,16 @@ #ifndef LLVM_FRONTEND_HLSL_HLSLROOTSIGNATURE_H #define LLVM_FRONTEND_HLSL_HLSLROOTSIGNATURE_H +#include "llvm/ADT/ArrayRef.h" +#include "llvm/ADT/STLForwardCompat.h" joaosaffran wrote: nit: are those needed? https://github.com/llvm/llvm-p

[llvm-branch-commits] [clang] [llvm] [HLSL] Remove old resource annotations (PR #130338)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-hlsl Author: Helena Kotas (hekota) Changes Fixes #114126 --- Full diff: https://github.com/llvm/llvm-project/pull/130338.diff 5 Files Affected: - (modified) clang/lib/CodeGen/CGDeclCXX.cpp (-3) - (modified) clang/lib/CodeGen/CGHLSLRuntime.cpp (-129)

[llvm-branch-commits] [clang] [llvm] [HLSL] Remove old resource annotations (PR #130338)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Helena Kotas (hekota) Changes Fixes #114126 --- Full diff: https://github.com/llvm/llvm-project/pull/130338.diff 5 Files Affected: - (modified) clang/lib/CodeGen/CGDeclCXX.cpp (-3) - (modified) clang/lib/CodeGen/CGHLSLRuntime.cpp (-129

[llvm-branch-commits] [llvm] [DirectX] Remove DXILResourceMDAnalysis (PR #130323)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-directx Author: Helena Kotas (hekota) Changes `DXILResourceMDAnalysis` gathers information about resources from obsolete resource metadata annotations that are going to be removed in a follow-up PR. Part 1/2 of #114126 --- Patch is 33.16 KiB,

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix SVE scalar fcopysign lowering without neon. (#129787) (PR #129997)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @david-arm What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129997 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/lis

[llvm-branch-commits] [llvm] a7c76aa - Revert "Reland [EquivClasses] Introduce members iterator-helper (#130319)"

2025-03-07 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2025-03-07T17:45:57-08:00 New Revision: a7c76aa6112e36a74d91dcd8b08cb114a6727556 URL: https://github.com/llvm/llvm-project/commit/a7c76aa6112e36a74d91dcd8b08cb114a6727556 DIFF: https://github.com/llvm/llvm-project/commit/a7c76aa6112e36a74d91dcd8b08cb114a6727556.diff L

[llvm-branch-commits] [llvm] [AMDGPU][NPM] Port SIPreEmitPeephole to NPM (PR #130065)

2025-03-07 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 147e7aff2a06c2b55dac8b9c9d1cd0c366325264 18645979e311d48be0926edac75cc92ed255fe5e --e

[llvm-branch-commits] [llvm] [AMDGPU][NPM] Port GCNCreateVOPD to NPM (PR #130059)

2025-03-07 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 399b9973e9f788a58c7476925a85f090d673ca0f 9ba01338705902014ddf5f6d4285cd0563ce1e28 --e

[llvm-branch-commits] [llvm] [AMDGPU] Dynamic VGPR support for llvm.amdgcn.cs.chain (PR #130094)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-selectiondag Author: Diana Picus (rovka) Changes The llvm.amdgcn.cs.chain intrinsic has a 'flags' operand which may indicate that we want to reallocate the VGPRs before performing the call. A call with the following arguments: ``` llvm.amdgcn.cs.c

[llvm-branch-commits] [llvm] release/20.x: [LoongArch] Relax the restrictions of inlineasm operand modifier 'u' and 'w' (#129864) (PR #130009)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-ir Author: None (llvmbot) Changes Backport bae6644e1227b2555f92b1962dac6c2444eaaaf2 Requested by: @SixWeining --- Full diff: https://github.com/llvm/llvm-project/pull/130009.diff 3 Files Affected: - (modified) llvm/docs/LangRef.rst (+2) - (mod

[llvm-branch-commits] [flang] Reland " [flang] Rely on global initialization for simpler derived types" (PR #130290)

2025-03-07 Thread via llvm-branch-commits
https://github.com/jeanPerier created https://github.com/llvm/llvm-project/pull/130290 Reland #114002 with an implementation of the FIXME that should solve the regressions that have been seen. The first commit is the original PR, the second is the fix. >From ad33569ce2ff3a97ea9767817e37ea85119

[llvm-branch-commits] [flang] Reland " [flang] Rely on global initialization for simpler derived types" (PR #130290)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-fir-hlfir Author: None (jeanPerier) Changes Reland #114002 with an implementation of the FIXME that should solve the regressions that have been seen. The first commit is the original PR, the second is the fix. --- Patch is 42.75 KiB, truncated t

[llvm-branch-commits] [llvm] a25b6a1 - Revert "AMDGPU: Handle demanded subvectors for readfirstlane (#128648)"

2025-03-07 Thread via llvm-branch-commits
Author: Jan Patrick Lehr Date: 2025-03-07T13:13:26+01:00 New Revision: a25b6a1976cc628b4cba8a8c2a77c8e72279f2a1 URL: https://github.com/llvm/llvm-project/commit/a25b6a1976cc628b4cba8a8c2a77c8e72279f2a1 DIFF: https://github.com/llvm/llvm-project/commit/a25b6a1976cc628b4cba8a8c2a77c8e72279f2a1.di

[llvm-branch-commits] [flang] 6e3e9f6 - Revert " [flang] Rely on global initialization for simpler derived types (#11…"

2025-03-07 Thread via llvm-branch-commits
Author: Tom Eccles Date: 2025-03-07T12:21:57Z New Revision: 6e3e9f6b34d5f08c8b0b77e60fe1526db7e69633 URL: https://github.com/llvm/llvm-project/commit/6e3e9f6b34d5f08c8b0b77e60fe1526db7e69633 DIFF: https://github.com/llvm/llvm-project/commit/6e3e9f6b34d5f08c8b0b77e60fe1526db7e69633.diff LOG: Re

[llvm-branch-commits] [clang] 5a71fab - Revert "[AArch64][SVE] Improve fixed-length addressing modes. (#129732)"

2025-03-07 Thread via llvm-branch-commits
Author: Ricardo Jesus Date: 2025-03-07T09:16:20Z New Revision: 5a71fab0067bae0f532a6268749df71dbe66b4ac URL: https://github.com/llvm/llvm-project/commit/5a71fab0067bae0f532a6268749df71dbe66b4ac DIFF: https://github.com/llvm/llvm-project/commit/5a71fab0067bae0f532a6268749df71dbe66b4ac.diff LOG:

[llvm-branch-commits] [llvm] release/20.x: [HEXAGON] Fix hvx-isel for extract_subvector op (#129672) (PR #130215)

2025-03-06 Thread via llvm-branch-commits
llvmbot wrote: @iajbar What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/130215 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [llvm] release/20.x: [HEXAGON] Fix hvx-isel for extract_subvector op (#129672) (PR #130215)

2025-03-06 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/130215 Backport 29d3fc3f11d272a72ac255af9277c740f26c3dfc Requested by: @androm3da >From 3c9189006713fbabe08a02e1d8fee0d79d7647a2 Mon Sep 17 00:00:00 2001 From: aankit-ca Date: Thu, 6 Mar 2025 15:02:10 -0800 Subject:

[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Add Metadata generation of Root Signatures for Attr (PR #125131)

2025-03-07 Thread via llvm-branch-commits
@@ -0,0 +1,108 @@ +//===- HLSLRootSignature.cpp - HLSL Root Signature helper objects +//--===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier:

[llvm-branch-commits] [clang] [llvm] [HLSL] Remove old resource annotations (PR #130338)

2025-03-07 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-codegen Author: Helena Kotas (hekota) Changes Fixes #114126 --- Full diff: https://github.com/llvm/llvm-project/pull/130338.diff 5 Files Affected: - (modified) clang/lib/CodeGen/CGDeclCXX.cpp (-3) - (modified) clang/lib/CodeGen/CGHLSLRuntime.c

[llvm-branch-commits] [flang] Reland " [flang] Rely on global initialization for simpler derived types" (PR #130290)

2025-03-07 Thread via llvm-branch-commits
https://github.com/NimishMishra approved this pull request. Thanks. LGTM. https://github.com/llvm/llvm-project/pull/130290 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bran

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Skip incoming values that are the same as the phi in `isGuaranteedNotToBeUndefOrPoison` (#130111) (PR #130474)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-analysis Author: None (llvmbot) Changes Backport 462eb7e28ef4507b16a4b45efb356bc6a3523615 Requested by: @nikic --- Full diff: https://github.com/llvm/llvm-project/pull/130474.diff 2 Files Affected: - (modified) llvm/lib/Analysis/ValueTracking.c

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Skip incoming values that are the same as the phi in `isGuaranteedNotToBeUndefOrPoison` (#130111) (PR #130474)

2025-03-09 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/130474 Backport 462eb7e28ef4507b16a4b45efb356bc6a3523615 Requested by: @nikic >From 92c994999ad85f0d115d7abe30b1ab3f6d79552d Mon Sep 17 00:00:00 2001 From: DianQK Date: Fri, 7 Mar 2025 05:46:32 +0800 Subject: [PATCH]

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Skip incoming values that are the same as the phi in `isGuaranteedNotToBeUndefOrPoison` (#130111) (PR #130474)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @nikic What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/130474 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinf

[llvm-branch-commits] [flang] Reland " [flang] Rely on global initialization for simpler derived types" (PR #130290)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-flang-openmp Author: None (jeanPerier) Changes Reland #114002 with an implementation of the FIXME that should solve the regressions that have been seen. The first commit is the original PR, the second is the fix. --- Patch is 42.75 KiB, truncated to 2

[llvm-branch-commits] [libcxx] [libc++][CI] Update action runner base image. (PR #130433)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-libcxx Author: Mark de Wever (mordante) Changes Updates to the latest release. The side effect of this change is updating all compilers to the latest upstream version. --- Full diff: https://github.com/llvm/llvm-project/pull/130433.diff 1 Files Affec

[llvm-branch-commits] [mlir] [mlir][memref] Add runtime verification for `memref.copy` (PR #130437)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir-memref Author: Matthias Springer (matthias-springer) Changes Implement runtime op verification for `memref.copy`. Only ranked memrefs are verified at the moment. --- Full diff: https://github.com/llvm/llvm-project/pull/130437.diff 2 Files Affect

[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Add Metadata generation of Root Signatures for Attr (PR #125131)

2025-03-08 Thread via llvm-branch-commits
@@ -0,0 +1,108 @@ +//===- HLSLRootSignature.cpp - HLSL Root Signature helper objects +//--===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier:

[llvm-branch-commits] [mlir] [mlir][memref] Add runtime verification for `memref.copy` (PR #130437)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir Author: Matthias Springer (matthias-springer) Changes Implement runtime op verification for `memref.copy`. Only ranked memrefs are verified at the moment. --- Full diff: https://github.com/llvm/llvm-project/pull/130437.diff 2 Files Affected: -

[llvm-branch-commits] [mlir] [mlir][memref] Add runtime verification for `memref.atomic_rmw` (PR #130414)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir Author: Matthias Springer (matthias-springer) Changes Implement runtime verification for `memref.atomic_rmw` and `memref.generic_atomic_rmw`. --- Full diff: https://github.com/llvm/llvm-project/pull/130414.diff 3 Files Affected: - (modified) ml

[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support to detect conversion in `make_optional` for `bugprone-optional-value-conversion` (PR #130417)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-tidy Author: Congcong Cai (HerrCai0907) Changes Fixes: #119554 --- Full diff: https://github.com/llvm/llvm-project/pull/130417.diff 3 Files Affected: - (modified) clang-tools-extra/clang-tidy/bugprone/OptionalValueConversionCheck.cpp (+18) -

[llvm-branch-commits] [clang] [AstMatcher]`templateArgumentCountIs` support `FunctionDecl` (PR #130416)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Congcong Cai (HerrCai0907) Changes `hasTemplateArgument` and `templateArgumentCountIs` are always used together. It is more convenient to make then support `FunctionDecl`. --- Full diff: https://github.com/llvm/llvm-project/pull/130416.di

[llvm-branch-commits] [mlir] [mlir][memref] Add runtime verification for `memref.assume_alignment` (PR #130412)

2025-03-08 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-mlir Author: Matthias Springer (matthias-springer) Changes Implement runtime verification for `memref.assume_alignment`. --- Full diff: https://github.com/llvm/llvm-project/pull/130412.diff 2 Files Affected: - (modified) mlir/lib/Dialect/MemRef/Tran

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Skip incoming values that are the same as the phi in `isGuaranteedNotToBeUndefOrPoison` (#130111) (PR #130474)

2025-03-09 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/130474 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support to detect conversion in `make_optional` for `bugprone-optional-value-conversion` (PR #130417)

2025-03-09 Thread via llvm-branch-commits
@@ -115,6 +115,10 @@ Changes in existing checks no longer be needed and will be removed. Also fixing false positive from const reference accessors to objects containing optional member. +- Improved :doc:`bugprone-optional-value-conversion EugeneZelenko wr

[llvm-branch-commits] [libcxx] [libc++][format] Implements P3107R5 in . (PR #130500)

2025-03-09 Thread via llvm-branch-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 97732a4da20cf57acecee0a14e68cf57749930b2 bfd4e08a6d624437b734af8ee6803c1f528ee7b6 --e

[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support pointee mutation check in misc-const-correctness (PR #130494)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-tools-extra Author: Congcong Cai (HerrCai0907) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/130494.diff 9 Files Affected: - (modified) clang-tools-extra/clang-tidy/misc/ConstCorrectnessCheck.cpp (+101-55) - (modified) cla

[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support pointee mutation check in misc-const-correctness (PR #130494)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang-tidy Author: Congcong Cai (HerrCai0907) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/130494.diff 9 Files Affected: - (modified) clang-tools-extra/clang-tidy/misc/ConstCorrectnessCheck.cpp (+101-55) - (modified) clang-tool

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Bail out on x86_fp80 when computing fpclass with knownbits (#130477) (PR #130489)

2025-03-09 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/130489 Backport 029e10289a02b438f1a22f401c94ed60ab4bb704 Requested by: @dtcxzyw >From 5229bbb52b2585be2c1a2e4bf9fcf2fa73ce3fea Mon Sep 17 00:00:00 2001 From: Yingwei Zheng Date: Sun, 9 Mar 2025 21:10:35 +0800 Subject

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Bail out on x86_fp80 when computing fpclass with knownbits (#130477) (PR #130489)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @arsenm What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/130489 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Bail out on x86_fp80 when computing fpclass with knownbits (#130477) (PR #130489)

2025-03-09 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/130489 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] release/20.x: [ValueTracking] Bail out on x86_fp80 when computing fpclass with knownbits (#130477) (PR #130489)

2025-03-09 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-transforms Author: None (llvmbot) Changes Backport 029e10289a02b438f1a22f401c94ed60ab4bb704 Requested by: @dtcxzyw --- Full diff: https://github.com/llvm/llvm-project/pull/130489.diff 2 Files Affected: - (modified) llvm/lib/Analysis/ValueTracki

[llvm-branch-commits] [clang-tools-extra] 794ba17 - [clangd] Add clangd 20 release notes (#127358)

2025-03-04 Thread via llvm-branch-commits
Author: Nathan Ridge Date: 2025-03-04T07:01:18-08:00 New Revision: 794ba171a43baaf9de9739440ddb582500527031 URL: https://github.com/llvm/llvm-project/commit/794ba171a43baaf9de9739440ddb582500527031 DIFF: https://github.com/llvm/llvm-project/commit/794ba171a43baaf9de9739440ddb582500527031.diff

[llvm-branch-commits] [lldb] ac1f055 - Revert "Push down the swig module to avoid an import cycle (#129135)"

2025-03-04 Thread via llvm-branch-commits
Author: David Spickett Date: 2025-03-04T14:22:17Z New Revision: ac1f0554602352795c9752eaac39532e3287fd95 URL: https://github.com/llvm/llvm-project/commit/ac1f0554602352795c9752eaac39532e3287fd95 DIFF: https://github.com/llvm/llvm-project/commit/ac1f0554602352795c9752eaac39532e3287fd95.diff LOG

[llvm-branch-commits] [mlir] 1ff59c4 - Revert "[mlir][tosa] Add more error_if checks for Resize Op (#129577)"

2025-03-04 Thread via llvm-branch-commits
Author: Jerry-Ge Date: 2025-03-04T08:05:01-08:00 New Revision: 1ff59c416e5a76a48c9dd154a03f34d6832f5c97 URL: https://github.com/llvm/llvm-project/commit/1ff59c416e5a76a48c9dd154a03f34d6832f5c97 DIFF: https://github.com/llvm/llvm-project/commit/1ff59c416e5a76a48c9dd154a03f34d6832f5c97.diff LOG:

[llvm-branch-commits] [clang] release/20.x: [Clang] Treat constexpr-unknown value as invalid in `EvaluateAsInitializer` (#128409) (PR #129836)

2025-03-04 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129836 Backport 27757fb87429c89a65bb5e1f619ad700928db0fd Requested by: @frederick-vs-ja >From b1e760c4c53f89bb21deed52ed326f8571abba34 Mon Sep 17 00:00:00 2001 From: Yingwei Zheng Date: Wed, 5 Mar 2025 14:01:24 +0800

[llvm-branch-commits] [clang] release/20.x: [Clang] Treat constexpr-unknown value as invalid in `EvaluateAsInitializer` (#128409) (PR #129836)

2025-03-04 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: None (llvmbot) Changes Backport 27757fb87429c89a65bb5e1f619ad700928db0fd Requested by: @frederick-vs-ja --- Full diff: https://github.com/llvm/llvm-project/pull/129836.diff 3 Files Affected: - (modified) clang/lib/AST/ExprConstant.cpp

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix BE popcount casts. (#129879) (PR #129996)

2025-03-05 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/129996 Backport b673a59c9ae5 ab811e75734a Requested by: @davemgreen >From e0f31d9f2345b4ddf4ac96e8275524aac5e827d4 Mon Sep 17 00:00:00 2001 From: David Green Date: Wed, 5 Mar 2025 11:23:33 + Subject: [PATCH 1/2]

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix BE popcount casts. (#129879) (PR #129996)

2025-03-05 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/129996 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix BE popcount casts. (#129879) (PR #129996)

2025-03-05 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-aarch64 Author: None (llvmbot) Changes Backport b673a59c9ae5 ab811e75734a Requested by: @davemgreen --- Full diff: https://github.com/llvm/llvm-project/pull/129996.diff 4 Files Affected: - (modified) llvm/lib/Target/AArch64/AArch64ISelLoweri

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix BE popcount casts. (#129879) (PR #129996)

2025-03-05 Thread via llvm-branch-commits
llvmbot wrote: @alexrp What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/129996 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listin

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix SVE scalar fcopysign lowering without neon. (#129787) (PR #129997)

2025-03-05 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/129997 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] release/20.x: [AArch64] Fix SVE scalar fcopysign lowering without neon. (#129787) (PR #129997)

2025-03-05 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-aarch64 Author: None (llvmbot) Changes Backport 4c2d1b4c53de d4ab3df320f9 Requested by: @davemgreen --- Full diff: https://github.com/llvm/llvm-project/pull/129997.diff 2 Files Affected: - (modified) llvm/lib/Target/AArch64/AArch64ISelLoweri

[llvm-branch-commits] [llvm] 56f8d69 - Revert "[LTO][Pipelines][Coro] De-duplicate Coro passes (#128654)"

2025-03-05 Thread via llvm-branch-commits
Author: Vitaly Buka Date: 2025-03-05T18:40:30-08:00 New Revision: 56f8d690f4d0c812c6e7b4173d4be940dfa1bf36 URL: https://github.com/llvm/llvm-project/commit/56f8d690f4d0c812c6e7b4173d4be940dfa1bf36 DIFF: https://github.com/llvm/llvm-project/commit/56f8d690f4d0c812c6e7b4173d4be940dfa1bf36.diff L

[llvm-branch-commits] [libclc] release/20.x: [libclc] Stop installing CLC headers (#126908) (PR #130017)

2025-03-06 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/130017 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [libclc] release/20.x: [libclc] Stop installing CLC headers (#126908) (PR #130017)

2025-03-06 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/130017 Backport a2b05761724e5243056988d9d6bf1a5a94715b74 Requested by: @frasercrmck >From 11b893892cd56d43420bde2d4de9038479cf Mon Sep 17 00:00:00 2001 From: Fraser Cormack Date: Thu, 6 Mar 2025 08:52:23 + Su

[llvm-branch-commits] [llvm] release/20.x: [LoongArch] Relax the restrictions of inlineasm operand modifier 'u' and 'w' (#129864) (PR #130009)

2025-03-06 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/130009 ___ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] release/20.x: [LoongArch] Relax the restrictions of inlineasm operand modifier 'u' and 'w' (#129864) (PR #130009)

2025-03-06 Thread via llvm-branch-commits
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/130009 Backport bae6644e1227b2555f92b1962dac6c2444eaaaf2 Requested by: @SixWeining >From 82c916a7f9fa7110cb38da56fdeb5aeb2edad8ab Mon Sep 17 00:00:00 2001 From: Lu Weining Date: Thu, 6 Mar 2025 16:17:12 +0800 Subject

[llvm-branch-commits] [llvm] release/20.x: [LoongArch] Relax the restrictions of inlineasm operand modifier 'u' and 'w' (#129864) (PR #130009)

2025-03-06 Thread via llvm-branch-commits
llvmbot wrote: @llvm/pr-subscribers-backend-loongarch Author: None (llvmbot) Changes Backport bae6644e1227b2555f92b1962dac6c2444eaaaf2 Requested by: @SixWeining --- Full diff: https://github.com/llvm/llvm-project/pull/130009.diff 3 Files Affected: - (modified) llvm/docs/LangRef.rst (+

<    89   90   91   92   93   94   95   96   97   98   >