llvmbot wrote:
@llvm/pr-subscribers-bolt
Author: None (llvmbot)
Changes
Backport a907008bcb8dcc093f8aa5c0450d92cd63473b81
Requested by: @MaskRay
---
Full diff: https://github.com/llvm/llvm-project/pull/126351.diff
7 Files Affected:
- (modified) bolt/test/AArch64/exceptions-plt.cpp (+3
llvmbot wrote:
@maksfb What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126351
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126351
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/126351
Backport a907008bcb8dcc093f8aa5c0450d92cd63473b81
Requested by: @MaskRay
>From 8d73587c26e03a5ce0c599bb8c47dae73577825f Mon Sep 17 00:00:00 2001
From: Fangrui Song
Date: Wed, 5 Feb 2025 09:31:58 -0800
Subject:
@@ -2842,6 +2868,12 @@ static void
CollectArgsForIntegratedAssembler(Compilation &C,
CmdArgs.push_back("-target-feature");
CmdArgs.push_back(MipsTargetFeature);
}
+ if (!SparcTargetFeatures.empty()) {
MaskRay wrote:
`if` can be dropped
https://git
https://github.com/MaskRay approved this pull request.
We try to support very few -Wa,... options for the integrated assembler, since
as you can see, the number of lines increases quite a lot. if this option is so
frequently used, i think this is ok.
https://github.com/llvm/llvm-project/pull/1
https://github.com/MaskRay edited
https://github.com/llvm/llvm-project/pull/125151
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -0,0 +1,199 @@
+// RUN: %clang_cc1 -finclude-default-header -triple
dxil-pc-shadermodel6.3-compute \
+// RUN: -fnative-half-type -emit-llvm -disable-llvm-passes -o - %s |
FileCheck %s
+
+// CHECK: %struct.__cblayout_CBScalars = type <{ float, double, half, i64,
i32, i16, i
@@ -257,8 +258,10 @@ static void validatePackoffset(Sema &S, HLSLBufferDecl
*BufDecl) {
VarDecl *NextVar = PackOffsetVec[i + 1].first;
S.Diag(NextVar->getLocation(), diag::err_hlsl_packoffset_overlap)
<< NextVar << Var;
+ IsValid = false;
}
}
@@ -5032,6 +5032,11 @@ class HLSLBufferDecl final : public NamedDecl, public
DeclContext {
SourceLocation KwLoc;
/// IsCBuffer - Whether the buffer is a cbuffer (and not a tbuffer).
bool IsCBuffer;
+ /// HasValidPackoffset - Whether the buffer has valid packoffset annot
@@ -0,0 +1,199 @@
+// RUN: %clang_cc1 -finclude-default-header -triple
dxil-pc-shadermodel6.3-compute \
+// RUN: -fnative-half-type -emit-llvm -disable-llvm-passes -o - %s |
FileCheck %s
+
+// CHECK: %struct.__cblayout_CBScalars = type <{ float, double, half, i64,
i32, i16, i
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/125363
>From e14e4942f057dad830bacef3fe60e9faf2479d0e Mon Sep 17 00:00:00 2001
From: Florian Hahn
Date: Sat, 1 Feb 2025 21:40:58 +
Subject: [PATCH] [VPlan] Check VPWidenIntrinsicSC in
VPRecipeWithIRFlags::classof.
Author: Michael Park
Date: 2025-02-07T18:36:03-08:00
New Revision: b2b41544eefa71f97fad492100617aab90d024fb
URL:
https://github.com/llvm/llvm-project/commit/b2b41544eefa71f97fad492100617aab90d024fb
DIFF:
https://github.com/llvm/llvm-project/commit/b2b41544eefa71f97fad492100617aab90d024fb.diff
github-actions[bot] wrote:
@mpark (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
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126289
___
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/126289
>From b2b41544eefa71f97fad492100617aab90d024fb Mon Sep 17 00:00:00 2001
From: Michael Park
Date: Mon, 3 Feb 2025 11:22:02 -0800
Subject: [PATCH] [C++20][Modules][Serialization] Delay marking pending
incomplete
github-actions[bot] wrote:
@beetrees (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126029
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: beetrees
Date: 2025-02-07T18:28:44-08:00
New Revision: 5e36383513a57704b513732b4b152b67933c37d9
URL:
https://github.com/llvm/llvm-project/commit/5e36383513a57704b513732b4b152b67933c37d9
DIFF:
https://github.com/llvm/llvm-project/commit/5e36383513a57704b513732b4b152b67933c37d9.diff
LOG:
Author: Tom Tromey
Date: 2025-02-07T18:28:44-08:00
New Revision: e5ea8f0a4855acd532db6beab8944a6226287a5f
URL:
https://github.com/llvm/llvm-project/commit/e5ea8f0a4855acd532db6beab8944a6226287a5f
DIFF:
https://github.com/llvm/llvm-project/commit/e5ea8f0a4855acd532db6beab8944a6226287a5f.diff
LO
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126029
>From e5ea8f0a4855acd532db6beab8944a6226287a5f Mon Sep 17 00:00:00 2001
From: Tom Tromey
Date: Tue, 4 Feb 2025 14:36:22 -0700
Subject: [PATCH 1/2] Allow 128-bit discriminants in DWARF variants (#125578)
If a va
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/llvmbot updated
https://github.com/llvm/llvm-project/pull/125996
>From f92369f2591f986c69a5b189d22da64aceb5b33d Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Wed, 5 Feb 2025 22:32:51 -0500
Subject: [PATCH] [libc++] Replace __is_trivially_relocatable by
is_trivially_copya
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125996
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Louis Dionne
Date: 2025-02-07T18:24:57-08:00
New Revision: f92369f2591f986c69a5b189d22da64aceb5b33d
URL:
https://github.com/llvm/llvm-project/commit/f92369f2591f986c69a5b189d22da64aceb5b33d
DIFF:
https://github.com/llvm/llvm-project/commit/f92369f2591f986c69a5b189d22da64aceb5b33d.diff
github-actions[bot] wrote:
@DavidSpickett (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
Author: David Spickett
Date: 2025-02-07T18:19:57-08:00
New Revision: 898089b76e1c9f6bb9c61a4f43e287b07c67eadb
URL:
https://github.com/llvm/llvm-project/commit/898089b76e1c9f6bb9c61a4f43e287b07c67eadb
DIFF:
https://github.com/llvm/llvm-project/commit/898089b76e1c9f6bb9c61a4f43e287b07c67eadb.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126211
___
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/126211
>From 898089b76e1c9f6bb9c61a4f43e287b07c67eadb Mon Sep 17 00:00:00 2001
From: David Spickett
Date: Wed, 5 Feb 2025 17:49:52 +
Subject: [PATCH] [mlir][CMake] Fix dependency on MLIRTestDialect in Transforms
t
github-actions[bot] wrote:
@davemgreen (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126253
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: David Green
Date: 2025-02-07T16:27:47-08:00
New Revision: 3351e1b142a8ef097f15766e363c2ecb5b8f7e5f
URL:
https://github.com/llvm/llvm-project/commit/3351e1b142a8ef097f15766e363c2ecb5b8f7e5f
DIFF:
https://github.com/llvm/llvm-project/commit/3351e1b142a8ef097f15766e363c2ecb5b8f7e5f.diff
L
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/126253
>From 3351e1b142a8ef097f15766e363c2ecb5b8f7e5f Mon Sep 17 00:00:00 2001
From: David Green
Date: Fri, 7 Feb 2025 10:16:57 +
Subject: [PATCH] [AArch64] Enable AvoidLDAPUR for cpu=generic between armv8.4
and
github-actions[bot] wrote:
@CarolineConcatto (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 thi
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126210
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: CarolineConcatto
Date: 2025-02-07T16:16:11-08:00
New Revision: de5dcad3a2d332e75ea3b680d7d41080b064ca7c
URL:
https://github.com/llvm/llvm-project/commit/de5dcad3a2d332e75ea3b680d7d41080b064ca7c
DIFF:
https://github.com/llvm/llvm-project/commit/de5dcad3a2d332e75ea3b680d7d41080b064ca7c.di
https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/126210
>From de5dcad3a2d332e75ea3b680d7d41080b064ca7c Mon Sep 17 00:00:00 2001
From: CarolineConcatto
Date: Thu, 6 Feb 2025 17:13:30 +
Subject: [PATCH] [AArch64] Update feature dep. for Armv9.6 extensions
(#12587
github-actions[bot] wrote:
@zmodem (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/126065
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Peter Smith
Date: 2025-02-07T16:13:24-08:00
New Revision: 4d3d4445c67c02d34900d5e4160632e1a06b8df8
URL:
https://github.com/llvm/llvm-project/commit/4d3d4445c67c02d34900d5e4160632e1a06b8df8
DIFF:
https://github.com/llvm/llvm-project/commit/4d3d4445c67c02d34900d5e4160632e1a06b8df8.diff
L
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126065
>From 4d3d4445c67c02d34900d5e4160632e1a06b8df8 Mon Sep 17 00:00:00 2001
From: Peter Smith
Date: Wed, 5 Feb 2025 19:04:21 +
Subject: [PATCH] [LLD][ELF][AArch64] Discard .ARM.attributes sections
(#125838)
LL
github-actions[bot] wrote:
@jhuber6 (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/tstellar closed
https://github.com/llvm/llvm-project/pull/125985
___
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/125985
>From dbb2699d2eee998e2a3d7862f7d633736bbbd77b Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Wed, 5 Feb 2025 20:51:28 -0600
Subject: [PATCH] [Offload] Stop the RPC server faiilng with more than one GPU
(#12
github-actions[bot] wrote:
@kadircet (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126030
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: kadir çetinkaya
Date: 2025-02-07T15:59:30-08:00
New Revision: e40790864ba00124931f0b242c20a474a9255eb7
URL:
https://github.com/llvm/llvm-project/commit/e40790864ba00124931f0b242c20a474a9255eb7
DIFF:
https://github.com/llvm/llvm-project/commit/e40790864ba00124931f0b242c20a474a9255eb7.dif
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126030
>From e40790864ba00124931f0b242c20a474a9255eb7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?kadir=20=C3=A7etinkaya?=
Date: Thu, 6 Feb 2025 10:18:38 +0100
Subject: [PATCH] [clang] Parse warning-suppression-mapping af
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.
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125995
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Phoebe Wang
Date: 2025-02-07T15:14:36-08:00
New Revision: 454d7c10f1869e0c109c733b2385b8c16c6a7756
URL:
https://github.com/llvm/llvm-project/commit/454d7c10f1869e0c109c733b2385b8c16c6a7756
DIFF:
https://github.com/llvm/llvm-project/commit/454d7c10f1869e0c109c733b2385b8c16c6a7756.diff
L
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/125995
>From 454d7c10f1869e0c109c733b2385b8c16c6a7756 Mon Sep 17 00:00:00 2001
From: Phoebe Wang
Date: Thu, 6 Feb 2025 10:58:37 +0800
Subject: [PATCH] [X86] Do not combine LRINT and TRUNC (#125848)
Per to discussions
Author: Nikita Popov
Date: 2025-02-07T14:50:35-08:00
New Revision: e2426cd9e9b47a771f2aaaef8c48f8dbea8b7d49
URL:
https://github.com/llvm/llvm-project/commit/e2426cd9e9b47a771f2aaaef8c48f8dbea8b7d49
DIFF:
https://github.com/llvm/llvm-project/commit/e2426cd9e9b47a771f2aaaef8c48f8dbea8b7d49.diff
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126310
>From 3c011c65f618a058b0be483223f4158bb269deea Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Fri, 7 Feb 2025 13:09:58 -0800
Subject: [PATCH] workflows/premerge: Move concurrency definition to workflow
level
github-actions[bot] wrote:
@tstellar (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126310
___
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:
@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
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126201
___
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/126201
>From e2426cd9e9b47a771f2aaaef8c48f8dbea8b7d49 Mon Sep 17 00:00:00 2001
From: Nikita Popov
Date: Fri, 7 Feb 2025 09:18:18 +0100
Subject: [PATCH] [libclc] Allow default path when looking for llvm-spirv
(#126071)
@@ -1,7 +1,7 @@
-; RUN: not --crash opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940
-passes='amdgpu-attributor,function(amdgpu-lower-kernel-arguments)'
-amdgpu-kernarg-preload-count=16 -S < %s 2>&1 | FileCheck %s
+; RUN: opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940
-passes='amdgpu-a
https://github.com/joaosaffran edited
https://github.com/llvm/llvm-project/pull/123147
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
aeubanks wrote:
I think I'm having a hard time reviewing these patches because I'm not
confident of the design. I've started writing up the current state of the new
pass manager for codegen and will send it out to LLVM discourse in hopes of
more eyes and discussion on the high-level design, an
h-vetinari wrote:
Thanks for the in-depth response, and trying to help fix this!
> Ideas for causes for it not working:
It's none of these, unfortunately.
> I ask you to send a reproducer that works without conda. If you cannot
> reproduce it without conda, I am assuming the problem is with c
Author: David Sherwood
Date: 2025-02-07T13:28:37-08:00
New Revision: 3542150f05a1f32796d2258f679b9190b7d1f825
URL:
https://github.com/llvm/llvm-project/commit/3542150f05a1f32796d2258f679b9190b7d1f825
DIFF:
https://github.com/llvm/llvm-project/commit/3542150f05a1f32796d2258f679b9190b7d1f825.diff
github-actions[bot] wrote:
@david-arm (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126209
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: David Sherwood
Date: 2025-02-07T13:28:37-08:00
New Revision: b5f41cc50c9db7e3c155e5c1e8114678baa6bce9
URL:
https://github.com/llvm/llvm-project/commit/b5f41cc50c9db7e3c155e5c1e8114678baa6bce9
DIFF:
https://github.com/llvm/llvm-project/commit/b5f41cc50c9db7e3c155e5c1e8114678baa6bce9.diff
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126209
>From 3542150f05a1f32796d2258f679b9190b7d1f825 Mon Sep 17 00:00:00 2001
From: David Sherwood
Date: Fri, 7 Feb 2025 09:36:52 +
Subject: [PATCH 1/2] [LoopVectorize] Fix cost model assert when vectorising
call
https://github.com/boomanaiden154 approved this pull request.
https://github.com/llvm/llvm-project/pull/126310
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@boomanaiden154 What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126310
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailma
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/126310
Backport 6e5988863177e1d53e7a7abb7a3db2b85376f0f5
Requested by: @tstellar
>From 8c9f343575f6cba87ffbcbc17ef15ba4a3bd00a0 Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Fri, 7 Feb 2025 13:09:58 -0800
Subject
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/125212
___
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-github-workflow
Author: None (llvmbot)
Changes
Backport 6e5988863177e1d53e7a7abb7a3db2b85376f0f5
Requested by: @tstellar
---
Full diff: https://github.com/llvm/llvm-project/pull/126310.diff
1 Files Affected:
- (modified) .github/workflows/premerge.y
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/126310
___
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:
@brad0 (or anyone else). If you would like to add a note about this fix in the
release notes (completely optional). Please reply to this comment with a one or
two sentence description of the fix. When you are done, please add the
release:note label to this PR.
htt
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/126038
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Brad Smith
Date: 2025-02-07T13:08:01-08:00
New Revision: 7bcfaa1c4d9ca11eabd1d80b9e3007f1640b2da1
URL:
https://github.com/llvm/llvm-project/commit/7bcfaa1c4d9ca11eabd1d80b9e3007f1640b2da1
DIFF:
https://github.com/llvm/llvm-project/commit/7bcfaa1c4d9ca11eabd1d80b9e3007f1640b2da1.diff
LO
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126038
>From 7bcfaa1c4d9ca11eabd1d80b9e3007f1640b2da1 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 6 Feb 2025 04:36:47 -0500
Subject: [PATCH] [flang][Driver] When linking with the Fortran runtime also
link wit
https://github.com/mizvekov approved this pull request.
https://github.com/llvm/llvm-project/pull/126289
___
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:
@kadircet (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126027
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: kadir çetinkaya
Date: 2025-02-07T12:49:40-08:00
New Revision: 4cde428de0fe9f16d6c2d8fdbe501aa701c9c6ea
URL:
https://github.com/llvm/llvm-project/commit/4cde428de0fe9f16d6c2d8fdbe501aa701c9c6ea
DIFF:
https://github.com/llvm/llvm-project/commit/4cde428de0fe9f16d6c2d8fdbe501aa701c9c6ea.dif
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/126027
>From 4cde428de0fe9f16d6c2d8fdbe501aa701c9c6ea Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?kadir=20=C3=A7etinkaya?=
Date: Thu, 6 Feb 2025 10:02:42 +0100
Subject: [PATCH] [clang] Stop parsing warning suppression map
https://github.com/nikic approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/125834
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
tstellar wrote:
@nikic does this look OK?
https://github.com/llvm/llvm-project/pull/125834
___
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:
@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
Author: Nikita Popov
Date: 2025-02-07T12:03:05-08:00
New Revision: 4d04a406a5a5e13af679018b116fc9975eb85579
URL:
https://github.com/llvm/llvm-project/commit/4d04a406a5a5e13af679018b116fc9975eb85579
DIFF:
https://github.com/llvm/llvm-project/commit/4d04a406a5a5e13af679018b116fc9975eb85579.diff
https://github.com/tstellar closed
https://github.com/llvm/llvm-project/pull/125287
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Nikita Popov
Date: 2025-02-07T12:03:05-08:00
New Revision: 14c5784ee4c03c5a7aa6f483486985d2c24a2407
URL:
https://github.com/llvm/llvm-project/commit/14c5784ee4c03c5a7aa6f483486985d2c24a2407
DIFF:
https://github.com/llvm/llvm-project/commit/14c5784ee4c03c5a7aa6f483486985d2c24a2407.diff
https://github.com/llvmbot updated
https://github.com/llvm/llvm-project/pull/125287
>From 14c5784ee4c03c5a7aa6f483486985d2c24a2407 Mon Sep 17 00:00:00 2001
From: Nikita Popov
Date: Fri, 31 Jan 2025 17:37:17 +0100
Subject: [PATCH 1/2] [TableGen] Reduce size of MatchTableRecord (NFC)
(#125221)
github-actions[bot] wrote:
@jhuber6 (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/tstellar closed
https://github.com/llvm/llvm-project/pull/126284
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: s.vgys
Date: 2025-02-07T18:27:18Z
New Revision: 3a3a3230d171e11842a9940b6da0f72022b1c5b3
URL:
https://github.com/llvm/llvm-project/commit/3a3a3230d171e11842a9940b6da0f72022b1c5b3
DIFF:
https://github.com/llvm/llvm-project/commit/3a3a3230d171e11842a9940b6da0f72022b1c5b3.diff
LOG: fix: r
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/123147
>From aabdfe7d6c6b6e27e9c2150c10199baa6638b6df Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Wed, 15 Jan 2025 17:30:00 +
Subject: [PATCH 01/22] adding metadata extraction
---
.../llvm/Analysis/DXILM
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/123147
>From aabdfe7d6c6b6e27e9c2150c10199baa6638b6df Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Wed, 15 Jan 2025 17:30:00 +
Subject: [PATCH 01/21] adding metadata extraction
---
.../llvm/Analysis/DXILM
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/126289
Backport a9e249f64e800fbb20a3b26c0cfb68c1a1aee5e1
Requested by: @mpark
>From 64294cc046c113af3ae10b08dd77c125170e2e20 Mon Sep 17 00:00:00 2001
From: Michael Park
Date: Mon, 3 Feb 2025 11:22:02 -0800
Subject: [
@@ -1,7 +1,7 @@
-; RUN: not --crash opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940
-passes='amdgpu-attributor,function(amdgpu-lower-kernel-arguments)'
-amdgpu-kernarg-preload-count=16 -S < %s 2>&1 | FileCheck %s
+; RUN: opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940
-passes='amdgpu-a
Author: Paul Kirth
Date: 2025-02-07T11:25:29-08:00
New Revision: 9611deb1401eb27477ae438ed257fccc87a395b7
URL:
https://github.com/llvm/llvm-project/commit/9611deb1401eb27477ae438ed257fccc87a395b7
DIFF:
https://github.com/llvm/llvm-project/commit/9611deb1401eb27477ae438ed257fccc87a395b7.diff
LO
llvmbot wrote:
@mizvekov What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/126289
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/list
https://github.com/kerbowa approved this pull request.
This LGTM but I think previous PR in stack should be obsolete after #123547
https://github.com/llvm/llvm-project/pull/126148
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
1 - 100 of 188 matches
Mail list logo