https://github.com/nikic approved this pull request.
https://github.com/llvm/llvm-project/pull/135291
___
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/jmorse commented:
Looks good, although I think the atom-group selection could be refactored so
that it's simpler to read. There's already multiple levels of nesting happening
in that function, best to reduce that as much as possible (possibly put it in a
completely different
@@ -226,8 +230,44 @@ DILocation *DILocation::getMergedLocation(DILocation
*LocA, DILocation *LocB) {
bool SameCol = L1->getColumn() == L2->getColumn();
unsigned Line = SameLine ? L1->getLine() : 0;
unsigned Col = SameLine && SameCol ? L1->getColumn() : 0;
-
-re
@@ -1243,6 +1243,140 @@ TEST_F(DILocationTest, Merge) {
auto *M2 = DILocation::getMergedLocation(A2, B);
EXPECT_EQ(M1, M2);
}
+
+#ifdef EXPERIMENTAL_KEY_INSTRUCTIONS
+#define EXPECT_ATOM(Loc, Group, Rank)
\
+ EXPECT_EQ(Group,
@@ -1243,6 +1243,140 @@ TEST_F(DILocationTest, Merge) {
auto *M2 = DILocation::getMergedLocation(A2, B);
EXPECT_EQ(M1, M2);
}
+
+#ifdef EXPERIMENTAL_KEY_INSTRUCTIONS
+#define EXPECT_ATOM(Loc, Group, Rank)
\
+ EXPECT_EQ(Group,
https://github.com/jmorse edited
https://github.com/llvm/llvm-project/pull/133480
___
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/RKSimon approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/135191
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
smithp35 wrote:
I had been assuming that this patch didn't change lld behaviour from the
comment in handleNonPreemptibleIfunc()
I've had some time to build and run lld on my example with this change and I
notice that with this change I'm seeing the dynamic symbol table use the ifunc
resolver.
Pierre-vh wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/135340?utm_source=stack-comment-downstack-mergeability-warning
https://github.com/Pierre-vh ready_for_review
https://github.com/llvm/llvm-project/pull/135340
___
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-llvm-globalisel
Author: Pierre van Houtryve (Pierre-vh)
Changes
wb/wbinv use storecnt, inv uses loadcnt.
Track them as VMEM_WRITE_ACCESS and VMEM_READ_ACCESS to avoid
InsertWaitCnt incorrectly eliminating the waitcnts after these instructions.
Solves SW
@@ -698,6 +698,16 @@ class SIInsertWaitcnts {
// Return the appropriate VMEM_*_ACCESS type for Inst, which must be a VMEM
or
// FLAT instruction.
WaitEventType getVmemWaitEventType(const MachineInstr &Inst) const {
+switch (Inst.getOpcode()) {
Pierre
https://github.com/Pierre-vh converted_to_draft
https://github.com/llvm/llvm-project/pull/135340
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -3086,13 +3086,51 @@ Instruction
*InstCombinerImpl::visitGetElementPtrInst(GetElementPtrInst &GEP) {
if (GEPType->isVectorTy())
return nullptr;
+ if (!GEP.isInBounds()) {
+unsigned IdxWidth =
+DL.getIndexSizeInBits(PtrOp->getType()->getPointerAddressSpac
https://github.com/bjope updated
https://github.com/llvm/llvm-project/pull/135155
From 84108e55aa15eeabc634671fdf7b8170d0667912 Mon Sep 17 00:00:00 2001
From: Bjorn Pettersson
Date: Fri, 11 Apr 2025 10:39:01 +0200
Subject: [PATCH 1/5] [InstCombine] Improve no-wrap flag preservation for
ADD+GEP
@@ -122,25 +122,23 @@ define ptr @gep_inbounds_nuwaddlike(ptr %ptr, i64 %a, i64
%b) {
ret ptr %gep
}
-; FIXME: Preserve "inbounds nuw".
define ptr @gep_inbounds_add_nuw(ptr %ptr, i64 %a, i64 %b) {
; CHECK-LABEL: define ptr @gep_inbounds_add_nuw(
; CHECK-SAME: ptr [[PTR:%
@@ -3086,13 +3086,51 @@ Instruction
*InstCombinerImpl::visitGetElementPtrInst(GetElementPtrInst &GEP) {
if (GEPType->isVectorTy())
return nullptr;
+ if (!GEP.isInBounds()) {
+unsigned IdxWidth =
+DL.getIndexSizeInBits(PtrOp->getType()->getPointerAddressSpac
Author: Dmitry Vasilyev
Date: 2025-04-11T16:12:19+04:00
New Revision: 2c7b3620502462008c3150df0522b441fb9527b3
URL:
https://github.com/llvm/llvm-project/commit/2c7b3620502462008c3150df0522b441fb9527b3
DIFF:
https://github.com/llvm/llvm-project/commit/2c7b3620502462008c3150df0522b441fb9527b3.dif
https://github.com/jmorse edited
https://github.com/llvm/llvm-project/pull/133482
___
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/jmorse commented:
Looks good, question inline. I worried a little about whether someone out there
might inadvertantly re-use this function for some other purpose, but it looks
like it's dedicated to `llvm::foldBranchToCommonDest`, so pretty much a single
use case.
https://g
https://github.com/jmorse approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/133483
___
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/nikic approved this pull request.
LGTM, thanks!
https://github.com/llvm/llvm-project/pull/135155
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-comm
@@ -3086,13 +3086,47 @@ Instruction
*InstCombinerImpl::visitGetElementPtrInst(GetElementPtrInst &GEP) {
if (GEPType->isVectorTy())
return nullptr;
+ if (!GEP.isInBounds()) {
+unsigned IdxWidth =
+DL.getIndexSizeInBits(PtrOp->getType()->getPointerAddressSpac
https://github.com/nikic edited https://github.com/llvm/llvm-project/pull/135155
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -1129,13 +1130,17 @@ static void
cloneInstructionsIntoPredecessorBlockAndUpdateSSAUses(
Instruction *NewBonusInst = BonusInst.clone();
-if (!isa(BonusInst) &&
-PTI->getDebugLoc() != NewBonusInst->getDebugLoc()) {
- // Unless the instruction has the sa
@@ -0,0 +1,81 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
UTC_ARGS: --version 5
+; RUN: opt %s -S -passes=simplifycfg -bonus-inst-threshold=2 | FileCheck %s
+
+;; Block d gets folded into preds b and c. Check the cloned instructions get
-
@@ -0,0 +1,113 @@
+//===- MCGOFFAttributes.h - Attributes of GOFF symbols
===//
+//
+// 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: Ap
smithp35 wrote:
As a FYI, I'll be out of office till after Easter, so I may not be able to
respond next week.
https://github.com/llvm/llvm-project/pull/133531
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.o
@@ -0,0 +1,113 @@
+//===- MCGOFFAttributes.h - Attributes of GOFF symbols
===//
+//
+// 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: Ap
https://github.com/OCHyams edited
https://github.com/llvm/llvm-project/pull/133482
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -223,13 +197,95 @@ void GOFFOstream::finalizeRecord() {
}
namespace {
+// A GOFFSymbol holds all the data required for writing an ESD record.
+class GOFFSymbol {
+public:
+ std::string Name;
+ uint32_t EsdId;
+ uint32_t ParentEsdId;
+ uint64_t Offset = 0; // Offset of t
@@ -1129,13 +1130,17 @@ static void
cloneInstructionsIntoPredecessorBlockAndUpdateSSAUses(
Instruction *NewBonusInst = BonusInst.clone();
-if (!isa(BonusInst) &&
-PTI->getDebugLoc() != NewBonusInst->getDebugLoc()) {
- // Unless the instruction has the sa
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/133082
>From cf7bb13f0c7ff2d757b43d207cb433f170d38ed1 Mon Sep 17 00:00:00 2001
From: dianqk
Date: Wed, 26 Mar 2025 21:27:43 +0800
Subject: [PATCH] [TailDuplicator] Determine if computed gotos using
`blockaddress` (#13
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/133082
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: dianqk
Date: 2025-04-11T09:36:02-07:00
New Revision: cf7bb13f0c7ff2d757b43d207cb433f170d38ed1
URL:
https://github.com/llvm/llvm-project/commit/cf7bb13f0c7ff2d757b43d207cb433f170d38ed1
DIFF:
https://github.com/llvm/llvm-project/commit/cf7bb13f0c7ff2d757b43d207cb433f170d38ed1.diff
LOG: [
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/133997
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Utkarsh Saxena
Date: 2025-04-11T09:37:25-07:00
New Revision: 53141e4e3c650d41ef2a4be7f79e7144264029da
URL:
https://github.com/llvm/llvm-project/commit/53141e4e3c650d41ef2a4be7f79e7144264029da
DIFF:
https://github.com/llvm/llvm-project/commit/53141e4e3c650d41ef2a4be7f79e7144264029da.diff
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/133997
>From 53141e4e3c650d41ef2a4be7f79e7144264029da Mon Sep 17 00:00:00 2001
From: Utkarsh Saxena
Date: Mon, 24 Mar 2025 17:42:33 +0100
Subject: [PATCH] [clang] Do not infer lifetimebound for functions with void
ret
github-actions[bot] wrote:
@cor3ntin (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.
@@ -3086,13 +3086,47 @@ Instruction
*InstCombinerImpl::visitGetElementPtrInst(GetElementPtrInst &GEP) {
if (GEPType->isVectorTy())
return nullptr;
+ if (!GEP.isInBounds()) {
+unsigned IdxWidth =
+DL.getIndexSizeInBits(PtrOp->getType()->getPointerAddressSpac
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/133832
>From ac31db0463c02128a7ae11fa5ee3d32d632bd97a Mon Sep 17 00:00:00 2001
From: Mariusz Borsa
Date: Mon, 31 Mar 2025 17:06:41 -0700
Subject: [PATCH] [Sanitizers][Darwin][Test] XFAIL malloc_zone.cpp
The malloc_zo
Author: Mariusz Borsa
Date: 2025-04-11T09:41:50-07:00
New Revision: ac31db0463c02128a7ae11fa5ee3d32d632bd97a
URL:
https://github.com/llvm/llvm-project/commit/ac31db0463c02128a7ae11fa5ee3d32d632bd97a
DIFF:
https://github.com/llvm/llvm-project/commit/ac31db0463c02128a7ae11fa5ee3d32d632bd97a.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/133832
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
@wrotki (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
ht
github-actions[bot] wrote:
@dianqk (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
ht
Author: Carlos Galvez
Date: 2025-04-11T09:44:59-07:00
New Revision: 19c2e1c12d47cd6f64db16eb15dd916bf1b76984
URL:
https://github.com/llvm/llvm-project/commit/19c2e1c12d47cd6f64db16eb15dd916bf1b76984
DIFF:
https://github.com/llvm/llvm-project/commit/19c2e1c12d47cd6f64db16eb15dd916bf1b76984.diff
github-actions[bot] wrote:
@carlosgalvezp (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 P
https://github.com/bjope updated
https://github.com/llvm/llvm-project/pull/135155
From 84108e55aa15eeabc634671fdf7b8170d0667912 Mon Sep 17 00:00:00 2001
From: Bjorn Pettersson
Date: Fri, 11 Apr 2025 10:39:01 +0200
Subject: [PATCH 1/7] [InstCombine] Improve no-wrap flag preservation for
ADD+GEP
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/134215
>From 19c2e1c12d47cd6f64db16eb15dd916bf1b76984 Mon Sep 17 00:00:00 2001
From: Carlos Galvez
Date: Thu, 3 Apr 2025 09:28:34 +0200
Subject: [PATCH] [clang-tidy] Fix broken HeaderFilterRegex when read from
config
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134215
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -1529,72 +1529,80 @@ void SemaHLSL::handleResourceBindingAttr(Decl *TheDecl,
const ParsedAttr &AL) {
diag::err_incomplete_type))
return;
}
- StringRef Space = "space0";
+
StringRef Slot = "";
+ StringRef Space = "";
+ Source
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/130017
___
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/hekota closed
https://github.com/llvm/llvm-project/pull/132453
___
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 updated
https://github.com/llvm/llvm-project/pull/134295
>From 41aefdbebe64ab53f604f32d6c807d239a55ff41 Mon Sep 17 00:00:00 2001
From: Austin Schuh
Date: Wed, 26 Mar 2025 13:54:58 -0700
Subject: [PATCH] cuda clang: Fix argument order for __reduce_max_sync
(#132881)
Author: Austin Schuh
Date: 2025-04-11T10:58:46-07:00
New Revision: 41aefdbebe64ab53f604f32d6c807d239a55ff41
URL:
https://github.com/llvm/llvm-project/commit/41aefdbebe64ab53f604f32d6c807d239a55ff41
DIFF:
https://github.com/llvm/llvm-project/commit/41aefdbebe64ab53f604f32d6c807d239a55ff41.diff
github-actions[bot] wrote:
@Artem-B (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
h
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/134313
>From a8b5fe017a5e8987ac9d992d613bdbc64c282806 Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Thu, 3 Apr 2025 18:34:49 -0400
Subject: [PATCH] [libc++] Add missing release note for LLVM 20 about zip_view
(#13
Author: Louis Dionne
Date: 2025-04-11T11:00:14-07:00
New Revision: a8b5fe017a5e8987ac9d992d613bdbc64c282806
URL:
https://github.com/llvm/llvm-project/commit/a8b5fe017a5e8987ac9d992d613bdbc64c282806
DIFF:
https://github.com/llvm/llvm-project/commit/a8b5fe017a5e8987ac9d992d613bdbc64c282806.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134313
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/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
https://github.com/mordante created
https://github.com/llvm/llvm-project/pull/135412
This version is the current version, to avoid unplanned automatic updates in
the future pin this version.
>From 3ba88a658be638776bbf54da3f1a0d41fe8756c1 Mon Sep 17 00:00:00 2001
From: Mark de Wever
Date: Fri,
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: Mark de Wever (mordante)
Changes
This version is the current version, to avoid unplanned automatic updates in
the future pin this version.
---
Full diff: https://github.com/llvm/llvm-project/pull/135412.diff
1 Files Affected:
- (modif
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/134331
>From a0c8959cc880900e5f8ad5721388777984fe7044 Mon Sep 17 00:00:00 2001
From: Aaron Puchert
Date: Thu, 3 Apr 2025 15:56:53 +0200
Subject: [PATCH] [X86] When expanding LCMPXCHG16B_SAVE_RBX, substitute RBX in
bas
Author: Aaron Puchert
Date: 2025-04-11T11:06:54-07:00
New Revision: a0c8959cc880900e5f8ad5721388777984fe7044
URL:
https://github.com/llvm/llvm-project/commit/a0c8959cc880900e5f8ad5721388777984fe7044
DIFF:
https://github.com/llvm/llvm-project/commit/a0c8959cc880900e5f8ad5721388777984fe7044.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134331
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Zingam wrote:
I posted a similar comment here:
https://github.com/llvm/llvm-project/pull/134496
I think the compiler support table needs to be updated with "Apple Clang 17",
is that so?
https://libcxx.llvm.org/
https://github.com/llvm/llvm-project/pull/135412
__
github-actions[bot] wrote:
@phoebewang (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.
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Ulrich Weigand (uweigand)
Changes
The recently announced IBM z17 processor implements the architecture already
supported as "arch15" in LLVM. This patch adds support for "z17" as an
alternate architecture name for arch15.
This patch also
https://github.com/philnik777 approved this pull request.
@ldionne Should make sure this is correct when he is back. I'm not entirely
sure whether "latest stable release" means latest minor or latest major (also,
we're not up-to-date in the docs which XCode we're supporting).
https://github.co
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/134407
>From 7436329bfee9b2af90e6954e4a6f4be21137b8f1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?=
Date: Fri, 4 Apr 2025 17:53:19 +0300
Subject: [PATCH] Revert "[clang] [ARM] Explicitly enable NEON
Author: Martin Storsjö
Date: 2025-04-11T11:09:26-07:00
New Revision: 7436329bfee9b2af90e6954e4a6f4be21137b8f1
URL:
https://github.com/llvm/llvm-project/commit/7436329bfee9b2af90e6954e4a6f4be21137b8f1
DIFF:
https://github.com/llvm/llvm-project/commit/7436329bfee9b2af90e6954e4a6f4be21137b8f1.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134407
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
@mstorsjo (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/uweigand edited
https://github.com/llvm/llvm-project/pull/135413
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
tstellar wrote:
OK, we'll skip this one.
https://github.com/llvm/llvm-project/pull/130017
___
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 updated
https://github.com/llvm/llvm-project/pull/134479
>From 4181e829d1dbc8290e4223c8268c6333c26bfe7a Mon Sep 17 00:00:00 2001
From: Tiezhu Yang
Date: Fri, 7 Feb 2025 11:18:40 +0800
Subject: [PATCH] [LLDB][LoongArch] Fix build errors about
NT_LOONGARCH_HW_{BREAK,WA
Author: Tiezhu Yang
Date: 2025-04-11T11:15:57-07:00
New Revision: 4181e829d1dbc8290e4223c8268c6333c26bfe7a
URL:
https://github.com/llvm/llvm-project/commit/4181e829d1dbc8290e4223c8268c6333c26bfe7a
DIFF:
https://github.com/llvm/llvm-project/commit/4181e829d1dbc8290e4223c8268c6333c26bfe7a.diff
L
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134479
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
github-actions[bot] wrote:
@ziyao233 (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.
mordante wrote:
I agree Louis should chime in when he's back. I just want to make sure we have
a patch to pin this so things remain stable until that time. It seems this
broke when switching from the 16.3 beta/rc? 1.to the final version. I've added
the bug report to my list of things to discus
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134514
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Owen Pan
Date: 2025-04-11T11:17:54-07:00
New Revision: edb54a7821fede0536e295ddf9966068bdc763af
URL:
https://github.com/llvm/llvm-project/commit/edb54a7821fede0536e295ddf9966068bdc763af
DIFF:
https://github.com/llvm/llvm-project/commit/edb54a7821fede0536e295ddf9966068bdc763af.diff
LOG:
github-actions[bot] wrote:
@owenca (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
ht
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134295
___
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/tstellar updated
https://github.com/llvm/llvm-project/pull/134514
>From edb54a7821fede0536e295ddf9966068bdc763af Mon Sep 17 00:00:00 2001
From: Owen Pan
Date: Sat, 5 Apr 2025 13:35:45 -0700
Subject: [PATCH] Release/20.x: [clang-format] Set C11 instead of C17 for LK_C
Backpor
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/134711
>From 81220e68a49615a3098ae246601467e1dab92fba Mon Sep 17 00:00:00 2001
From: Paul Kirth
Date: Mon, 7 Apr 2025 08:41:49 -0700
Subject: [PATCH] [fatlto] Add coroutine passes when using FatLTO with ThinLTO
(#1344
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/134711
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Paul Kirth
Date: 2025-04-11T11:30:09-07:00
New Revision: 81220e68a49615a3098ae246601467e1dab92fba
URL:
https://github.com/llvm/llvm-project/commit/81220e68a49615a3098ae246601467e1dab92fba
DIFF:
https://github.com/llvm/llvm-project/commit/81220e68a49615a3098ae246601467e1dab92fba.diff
LO
github-actions[bot] wrote:
@nikic (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
htt
tstellar wrote:
Are these test failures relevant?
https://github.com/llvm/llvm-project/pull/134895
___
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 updated
https://github.com/llvm/llvm-project/pull/135118
>From d05543ed07965560c1e2cc6f5239a22201d64813 Mon Sep 17 00:00:00 2001
From: Owen Pan
Date: Wed, 9 Apr 2025 17:52:12 -0700
Subject: [PATCH] [clang-format] Keep the space between `not` and a unary
operator (#13
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/135118
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Owen Pan
Date: 2025-04-11T11:33:19-07:00
New Revision: d05543ed07965560c1e2cc6f5239a22201d64813
URL:
https://github.com/llvm/llvm-project/commit/d05543ed07965560c1e2cc6f5239a22201d64813
DIFF:
https://github.com/llvm/llvm-project/commit/d05543ed07965560c1e2cc6f5239a22201d64813.diff
LOG:
github-actions[bot] wrote:
@owenca (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
ht
https://github.com/uweigand milestoned
https://github.com/llvm/llvm-project/pull/135413
___
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 updated
https://github.com/llvm/llvm-project/pull/135191
>From 91647ae0dffed1dedcd9ef9214e1ea849b391bbe Mon Sep 17 00:00:00 2001
From: Stefan Schmidt
Date: Wed, 9 Apr 2025 11:19:26 +0200
Subject: [PATCH] [X86][SSE] Don't emit SSE2 load instructions in SSE1-only
mode
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/135191
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Stefan Schmidt
Date: 2025-04-11T11:37:58-07:00
New Revision: 91647ae0dffed1dedcd9ef9214e1ea849b391bbe
URL:
https://github.com/llvm/llvm-project/commit/91647ae0dffed1dedcd9ef9214e1ea849b391bbe
DIFF:
https://github.com/llvm/llvm-project/commit/91647ae0dffed1dedcd9ef9214e1ea849b391bbe.diff
github-actions[bot] wrote:
@RKSimon (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
mordante wrote:
> Are these test failures relevant?
No there was an issue with the AIX-32 build bot last week.
https://github.com/llvm/llvm-project/pull/134895
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.
1 - 100 of 164 matches
Mail list logo