github-actions[bot] wrote:
@androm3da (or anyone else). If you would like to add a note about this fix in
the release notes (completely optional). Please reply to this comment with a
one or two sentence description of the fix. When you are done, please add the
release:note label to this PR.
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/118181
___
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/tru updated https://github.com/llvm/llvm-project/pull/118181
>From ab4b5a2db582958af1ee308a790cfdb42bd24720 Mon Sep 17 00:00:00 2001
From: Brian Cain
Date: Fri, 29 Nov 2024 16:42:44 -0600
Subject: [PATCH] [clang] recognize hexagon-*-ld.lld variants (#117338)
If we create a cr
Author: Brian Cain
Date: 2024-12-03T08:46:10+01:00
New Revision: ab4b5a2db582958af1ee308a790cfdb42bd24720
URL:
https://github.com/llvm/llvm-project/commit/ab4b5a2db582958af1ee308a790cfdb42bd24720
DIFF:
https://github.com/llvm/llvm-project/commit/ab4b5a2db582958af1ee308a790cfdb42bd24720.diff
LO
anutosh491 wrote:
> > Hi @tru
> > Curious to know as to when a 19.1.5 release is scheduled ?
>
> Tomorrow.
Thanks for the update :)
https://github.com/llvm/llvm-project/pull/118077
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.o
asl wrote:
> ELF PAuth is an object file format specific feature that isn't coupled with a
> specific OS. Keeping it in generic code might help other OSes (e.g. *BSD), if
> they ever adopt PAuth.
In fact, it is coupled. The idea here is that PAuth effectively defines another
platform ABI (or
https://github.com/MaskRay commented:
ELF PAuth is an object file format specific feature that isn't coupled with a
specific OS.
Keeping it in generic code might help other OSes (e.g. *BSD), if they ever
adopt PAuth.
https://github.com/llvm/llvm-project/pull/113151
https://github.com/MaskRay approved this pull request.
https://github.com/llvm/llvm-project/pull/118181
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/arsenm ready_for_review
https://github.com/llvm/llvm-project/pull/118304
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
arsenm 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/118304?utm_source=stack-comment-downstack-mergeability-warning";
androm3da wrote:
ping @MaskRay
https://github.com/llvm/llvm-project/pull/118181
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/117963
>From d4e97b490621bbb45ce52bc6ad81c869bb84a4e4 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Wed, 27 Nov 2024 22:24:15 -0500
Subject: [PATCH 1/3] AMDGPU: Simplify demanded bits on readlane/writeline
index
Author: Alan Phipps
Date: 2024-12-02T15:44:05-06:00
New Revision: c4ab7f0140cfab754b27468be2fc7143479c83f3
URL:
https://github.com/llvm/llvm-project/commit/c4ab7f0140cfab754b27468be2fc7143479c83f3
DIFF:
https://github.com/llvm/llvm-project/commit/c4ab7f0140cfab754b27468be2fc7143479c83f3.diff
L
https://github.com/arsenm created
https://github.com/llvm/llvm-project/pull/118304
Co-authored-by: Sirish Pande
>From 0ed129dd231bb2792690f381ba542d92d74b19a1 Mon Sep 17 00:00:00 2001
From: Sirish Pande
Date: Mon, 6 May 2024 10:20:30 -0500
Subject: [PATCH] AMDGPU: Add codegen support for gfx9
arsenm 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/118300?utm_source=stack-comment-downstack-mergeability-warning";
sdesmalen-arm wrote:
> Hi! How important are these backports for the release branch? Are they
> bugfixes? What's the risk of them?
Hi @tru, these are all bugfixes for things that would somehow lead to a
compilation failure when targeting AArch64 SME instructions. I don't see any
risks in cher
@@ -16,13 +16,58 @@
#include "token-parsers.h"
#include "type-parser-implementation.h"
#include "flang/Parser/parse-tree.h"
+#include "llvm/ADT/ArrayRef.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/StringRef.h"
+#include "llvm/Frontend/OpenMP/OMP.h"
// OpenMP Dire
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/118304
>From dbf3d5c54349f8cbde05301592b9e3d2d2514504 Mon Sep 17 00:00:00 2001
From: Sirish Pande
Date: Mon, 6 May 2024 10:20:30 -0500
Subject: [PATCH] AMDGPU: Add codegen support for gfx950 v_ashr_pk_i8/u8_i32
Co-auth
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
Co-authored-by: Sirish Pande
---
Full diff: https://github.com/llvm/llvm-project/pull/118297.diff
6 Files Affected:
- (modified) clang/include/clang/Basic/BuiltinsAMDGPU.de
@@ -24,6 +24,10 @@
namespace Fortran::lower {
+struct LoweredResult {
+ std::variant result;
+};
jeanPerier wrote:
Updated.
https://github.com/llvm/llvm-project/pull/118070
___
llvm-branch-commits mailing list
ll
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
Changes
Co-authored-by: Sirish Pande
---
Full diff: https://github.com/llvm/llvm-project/pull/118304.diff
2 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/VOP3Instructions.td
https://github.com/srpande approved this pull request.
LGTM for now. I will add the support in instcombine later.
https://github.com/llvm/llvm-project/pull/118304
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.ll
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/118304
>From 6d898987c3f94e8ac3d0af8a49e606509e4a4d2a Mon Sep 17 00:00:00 2001
From: Sirish Pande
Date: Mon, 6 May 2024 10:20:30 -0500
Subject: [PATCH] AMDGPU: Add codegen support for gfx950 v_ashr_pk_i8/u8_i32
Co-auth
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/118304
>From 2c841b71044a18cdaa0cbc34611a09baedc30e88 Mon Sep 17 00:00:00 2001
From: Sirish Pande
Date: Mon, 6 May 2024 10:20:30 -0500
Subject: [PATCH] AMDGPU: Add codegen support for gfx950 v_ashr_pk_i8/u8_i32
Co-auth
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/118300
>From 3d3c8e1984c82c72e8a224ca951579936596e454 Mon Sep 17 00:00:00 2001
From: Shilei Tian
Date: Thu, 25 Jul 2024 15:49:58 -0400
Subject: [PATCH] AMDGPU: Add support for V_CVT_PK_F16_F32 instruction for
gfx950
C
https://github.com/arsenm ready_for_review
https://github.com/llvm/llvm-project/pull/118300
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/arsenm created
https://github.com/llvm/llvm-project/pull/118300
Co-authored-by: Shilei Tian
>From 410d5e186a5ac1fc13a69d775bc531d271ec469e Mon Sep 17 00:00:00 2001
From: Shilei Tian
Date: Thu, 25 Jul 2024 15:49:58 -0400
Subject: [PATCH] AMDGPU: Add support for V_CVT_PK_F16_
https://github.com/shiltian edited
https://github.com/llvm/llvm-project/pull/118300
___
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/shiltian approved this pull request.
https://github.com/llvm/llvm-project/pull/118300
___
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-clang
Author: Matt Arsenault (arsenm)
Changes
Co-authored-by: Sirish Pande
---
Full diff: https://github.com/llvm/llvm-project/pull/118304.diff
2 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/VOP3Instructions.td (+17)
-
arsenm 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/118297?utm_source=stack-comment-downstack-mergeability-warning";
https://github.com/gbMattN updated
https://github.com/llvm/llvm-project/pull/108385
>From 4f5a7f198988a45fe64b9d1ba88e68a6d7f14e32 Mon Sep 17 00:00:00 2001
From: Matthew Nagy
Date: Thu, 12 Sep 2024 12:36:57 +
Subject: [PATCH 1/4] [TySan] Fix struct access with different bases
---
compiler
https://github.com/arsenm ready_for_review
https://github.com/llvm/llvm-project/pull/118297
___
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/jeanPerier updated
https://github.com/llvm/llvm-project/pull/118070
>From 4debf91864773ba805a9439cde9b74fc44315acc Mon Sep 17 00:00:00 2001
From: Jean Perier
Date: Thu, 28 Nov 2024 08:28:21 -0800
Subject: [PATCH 1/3] [flang] optimize array function calls using
hlfir.eval_in_
@@ -16,13 +16,58 @@
#include "token-parsers.h"
#include "type-parser-implementation.h"
#include "flang/Parser/parse-tree.h"
+#include "llvm/ADT/ArrayRef.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/StringRef.h"
+#include "llvm/Frontend/OpenMP/OMP.h"
// OpenMP Dire
ilya-biryukov wrote:
Thanks for bearing with us. The latest round of correctness testing came out
positive. We have had one sleeper issue (the venerable "inline function
undefined") pop up in the leaf of the build graph, but we managed to work
around it.
@alexfh is still running the benchmark
kovdan01 wrote:
@MaskRay would be glad to see your feedback on this
https://github.com/llvm/llvm-project/pull/113817
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-com
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
Author: Matt Arsenault (arsenm)
Changes
Co-authored-by: Sirish Pande
---
Full diff: https://github.com/llvm/llvm-project/pull/118304.diff
2 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/VOP3Instructions.td (
@@ -1285,7 +1285,7 @@ elseif(LLVM_ENABLE_LTO)
endif()
endif()
-if(LLVM_ENABLE_FATLTO AND UNIX AND NOT APPLE)
+if(LLVM_ENABLE_FATLTO AND ((UNIX AND NOT APPLE) OR FUCHSIA))
ilovepi wrote:
Because Fuchsia Targets aren't UNIX. Without this change `-ffat-lto-obj
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 8e6e62d0dee48a696afd0c7d53d74eaccef97b5e
8addd061964253a1100d76446569ff1f67e63a9c --e
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-clang-codegen
Author: Matt Arsenault (arsenm)
Changes
Co-authored-by: Shilei Tian
---
Patch is 27.52 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/118300.dif
https://github.com/arsenm created
https://github.com/llvm/llvm-project/pull/118297
Co-authored-by: Sirish Pande
>From 12382588e361d8d8984057a7ea684d9807f41a6d Mon Sep 17 00:00:00 2001
From: Sirish Pande
Date: Thu, 18 Jul 2024 14:27:57 -0500
Subject: [PATCH] AMDGPU: Allow f16/bf16 for DS_READ_
https://github.com/jeanPerier updated
https://github.com/llvm/llvm-project/pull/118070
>From 4debf91864773ba805a9439cde9b74fc44315acc Mon Sep 17 00:00:00 2001
From: Jean Perier
Date: Thu, 28 Nov 2024 08:28:21 -0800
Subject: [PATCH 1/2] [flang] optimize array function calls using
hlfir.eval_in_
https://github.com/tblah edited https://github.com/llvm/llvm-project/pull/118128
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -16,13 +16,58 @@
#include "token-parsers.h"
#include "type-parser-implementation.h"
#include "flang/Parser/parse-tree.h"
+#include "llvm/ADT/ArrayRef.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/StringRef.h"
+#include "llvm/Frontend/OpenMP/OMP.h"
// OpenMP Dire
@@ -16,13 +16,58 @@
#include "token-parsers.h"
#include "type-parser-implementation.h"
#include "flang/Parser/parse-tree.h"
+#include "llvm/ADT/ArrayRef.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/StringRef.h"
+#include "llvm/Frontend/OpenMP/OMP.h"
// OpenMP Dire
https://github.com/tblah approved this pull request.
LGTM, just some nit picks.
https://github.com/llvm/llvm-project/pull/118128
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llv
https://github.com/tblah approved this pull request.
Thanks
https://github.com/llvm/llvm-project/pull/117786
___
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/tblah approved this pull request.
LGTM with the one nit
https://github.com/llvm/llvm-project/pull/118070
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bra
@@ -134,7 +134,7 @@ end function f
!CHECK-NEXT: run 1 save: where/mask
!CHECK-NEXT: run 2 evaluate: where/region_assign1
!CHECK-LABEL: scheduling where in _QPonly_once
-!CHECK-NEXT: unknown effect: %{{[0-9]+}} = llvm.intr.stacksave : !llvm.ptr
+!CH
https://github.com/tblah approved this pull request.
Thanks!
https://github.com/llvm/llvm-project/pull/117784
___
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/tblah approved this pull request.
Thanks!
https://github.com/llvm/llvm-project/pull/117917
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
anutosh491 wrote:
> please add the release:note label to this PR.
Hi @tru, the above comment requires us to add a label for release notes. Not
sure I can add a label. Can you help me out here ?
https://github.com/llvm/llvm-project/pull/118077
___
llv
anutosh491 wrote:
> @anutosh491 (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.
F
Author: AdityaK
Date: 2024-12-02T09:34:56+01:00
New Revision: 321f0dd2008160b674c010425133bebc586392e7
URL:
https://github.com/llvm/llvm-project/commit/321f0dd2008160b674c010425133bebc586392e7
DIFF:
https://github.com/llvm/llvm-project/commit/321f0dd2008160b674c010425133bebc586392e7.diff
LOG:
https://github.com/dtcxzyw closed
https://github.com/llvm/llvm-project/pull/118216
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
nikic wrote:
As this is for a fuzzer-generated test case
(https://github.com/llvm/llvm-project/issues/117133#issuecomment-2509952839),
it's not a regression (the issue exists since at least LLVM 13) and the fix is
non-trivial, I'm inclined to not backport.
https://github.com/llvm/llvm-project
github-actions[bot] wrote:
@anutosh491 (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.
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/tru closed https://github.com/llvm/llvm-project/pull/118077
___
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/tru closed https://github.com/llvm/llvm-project/pull/117869
___
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/tru updated https://github.com/llvm/llvm-project/pull/117869
>From f64f76feab83859b37b7fa5de3d4bba9a446e72b Mon Sep 17 00:00:00 2001
From: AdityaK
Date: Tue, 10 Sep 2024 22:39:02 -0700
Subject: [PATCH 1/2] Bail out jump threading on indirect branches (#103688)
The bug was int
tru wrote:
> Hi @tru
>
> Curious to know as to when a 19.1.5 release is scheduled ?
Tomorrow.
https://github.com/llvm/llvm-project/pull/118077
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mail
https://github.com/tru updated https://github.com/llvm/llvm-project/pull/118077
>From e6bcdea700dc7a5b1cf3a3f5a4eaa40d1234e220 Mon Sep 17 00:00:00 2001
From: Anutosh Bhat
Date: Fri, 29 Nov 2024 15:31:02 +0530
Subject: [PATCH] [clang-repl] Fix generation of wasm binaries while running
clang-repl
Author: Anutosh Bhat
Date: 2024-12-02T09:35:23+01:00
New Revision: e6bcdea700dc7a5b1cf3a3f5a4eaa40d1234e220
URL:
https://github.com/llvm/llvm-project/commit/e6bcdea700dc7a5b1cf3a3f5a4eaa40d1234e220
DIFF:
https://github.com/llvm/llvm-project/commit/e6bcdea700dc7a5b1cf3a3f5a4eaa40d1234e220.diff
Author: AdityaK
Date: 2024-12-02T09:34:56+01:00
New Revision: f64f76feab83859b37b7fa5de3d4bba9a446e72b
URL:
https://github.com/llvm/llvm-project/commit/f64f76feab83859b37b7fa5de3d4bba9a446e72b
DIFF:
https://github.com/llvm/llvm-project/commit/f64f76feab83859b37b7fa5de3d4bba9a446e72b.diff
LOG:
tru wrote:
Hi! How important are these backports for the release branch? Are they
bugfixes? What's the risk of them?
https://github.com/llvm/llvm-project/pull/117695
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists
github-actions[bot] wrote:
@heiher (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/tru updated https://github.com/llvm/llvm-project/pull/117105
>From dc665fa5f5b8b572479ceac6bf32e0174de65f1e Mon Sep 17 00:00:00 2001
From: Zhaoxin Yang
Date: Mon, 11 Nov 2024 16:46:22 +0800
Subject: [PATCH] [MC][LoongArch] Change default cpu in `MCSubtargetInfo`.
(#114922)
T
github-actions[bot] wrote:
@alexey-bataev (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: Zhaoxin Yang
Date: 2024-12-02T09:33:07+01:00
New Revision: dc665fa5f5b8b572479ceac6bf32e0174de65f1e
URL:
https://github.com/llvm/llvm-project/commit/dc665fa5f5b8b572479ceac6bf32e0174de65f1e
DIFF:
https://github.com/llvm/llvm-project/commit/dc665fa5f5b8b572479ceac6bf32e0174de65f1e.diff
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/117105
___
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/tru updated https://github.com/llvm/llvm-project/pull/113146
>From edded5af5494adfc53187719fa3f3b0be7a4a20e Mon Sep 17 00:00:00 2001
From: Alexey Bataev
Date: Fri, 18 Oct 2024 13:44:57 -0700
Subject: [PATCH 1/2] [SLP][NFC]Add a test with the incorrect casting of the
abs argum
https://github.com/tru closed https://github.com/llvm/llvm-project/pull/113146
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Alexey Bataev
Date: 2024-12-02T09:32:35+01:00
New Revision: 9f72c9837c553063ab0cbacc1a472a73c0ec2a4b
URL:
https://github.com/llvm/llvm-project/commit/9f72c9837c553063ab0cbacc1a472a73c0ec2a4b
DIFF:
https://github.com/llvm/llvm-project/commit/9f72c9837c553063ab0cbacc1a472a73c0ec2a4b.diff
Author: Alexey Bataev
Date: 2024-12-02T09:32:35+01:00
New Revision: edded5af5494adfc53187719fa3f3b0be7a4a20e
URL:
https://github.com/llvm/llvm-project/commit/edded5af5494adfc53187719fa3f3b0be7a4a20e
DIFF:
https://github.com/llvm/llvm-project/commit/edded5af5494adfc53187719fa3f3b0be7a4a20e.diff
github-actions[bot] wrote:
@AreaZR (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/tru closed https://github.com/llvm/llvm-project/pull/116865
___
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/tru updated https://github.com/llvm/llvm-project/pull/116865
>From 0e7e5d9bdf3c130069a1d622dc9a2b71357fc1ee Mon Sep 17 00:00:00 2001
From: Yingwei Zheng
Date: Tue, 19 Nov 2024 20:06:34 +0800
Subject: [PATCH] [InstCombine] Drop noundef attributes in `foldCttzCtlz`
(#116718)
C
Author: Yingwei Zheng
Date: 2024-12-02T09:30:40+01:00
New Revision: 0e7e5d9bdf3c130069a1d622dc9a2b71357fc1ee
URL:
https://github.com/llvm/llvm-project/commit/0e7e5d9bdf3c130069a1d622dc9a2b71357fc1ee
DIFF:
https://github.com/llvm/llvm-project/commit/0e7e5d9bdf3c130069a1d622dc9a2b71357fc1ee.diff
80 matches
Mail list logo