llvmbot wrote:
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Vitaly Buka (vitalybuka)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/98575.diff
2 Files Affected:
- (modified) compiler-rt/lib/asan/asan_descriptions.cpp (+1-1)
- (modified) compiler-rt/lib/asan/as
llvmbot wrote:
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Vitaly Buka (vitalybuka)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/98576.diff
1 Files Affected:
- (modified) compiler-rt/lib/hwasan/hwasan_report.cpp (+1-2)
``diff
diff --git a/compiler
llvmbot wrote:
@llvm/pr-subscribers-pgo
Author: Vitaly Buka (vitalybuka)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/98577.diff
1 Files Affected:
- (modified) compiler-rt/lib/memprof/memprof_rtl.cpp (+1-1)
``diff
diff --git a/compiler-rt/lib/memprof/mem
llvmbot wrote:
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Vitaly Buka (vitalybuka)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/98578.diff
12 Files Affected:
- (modified) compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
(+2-2)
- (modified)
Author: David Spickett
Date: 2024-07-12T11:34:32+01:00
New Revision: 017a49990189cc9513ff088eebbeeb1f54e3ff93
URL:
https://github.com/llvm/llvm-project/commit/017a49990189cc9513ff088eebbeeb1f54e3ff93
DIFF:
https://github.com/llvm/llvm-project/commit/017a49990189cc9513ff088eebbeeb1f54e3ff93.diff
Author: Aaron Ballman
Date: 2024-07-12T06:57:49-04:00
New Revision: f1a52644e84021dded1fa5e58401cf23b8c519e6
URL:
https://github.com/llvm/llvm-project/commit/f1a52644e84021dded1fa5e58401cf23b8c519e6
DIFF:
https://github.com/llvm/llvm-project/commit/f1a52644e84021dded1fa5e58401cf23b8c519e6.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Krzysztof Parzyszek (kparzysz)
Changes
…lization`
Replace the explicit list of compound directives ending with taskloop with
checking for the last leaf construct.
---
Full diff: https://github.com/llvm/llvm-project/pull/98633.diff
1 Fi
https://github.com/gbMattN updated
https://github.com/llvm/llvm-project/pull/95387
>From 8099113d68bd7c47c29f635bb10a048ddb99833b Mon Sep 17 00:00:00 2001
From: Matthew Nagy
Date: Fri, 28 Jun 2024 16:12:31 +
Subject: [PATCH] [TySan] Fixed false positive when accessing global object's
membe
gbMattN wrote:
@fhahn updated to remove merge conflicts
https://github.com/llvm/llvm-project/pull/96507
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Michael Jones
Date: 2024-07-12T10:50:56-07:00
New Revision: 6ea50a98e3f6db5c0fbd3ff6c16e2d9ac01fae37
URL:
https://github.com/llvm/llvm-project/commit/6ea50a98e3f6db5c0fbd3ff6c16e2d9ac01fae37
DIFF:
https://github.com/llvm/llvm-project/commit/6ea50a98e3f6db5c0fbd3ff6c16e2d9ac01fae37.diff
llvmbot wrote:
@llvm/pr-subscribers-mlir
Author: Matthias Springer (matthias-springer)
Changes
This commit simplifies the handling of dropped arguments and updates some
dialect conversion documentation that is outdated.
When converting a block signature, a `BlockTypeConversionRewrite` ob
llvmbot wrote:
@llvm/pr-subscribers-mlir-core
Author: Matthias Springer (matthias-springer)
Changes
This commit simplifies the handling of dropped arguments and updates some
dialect conversion documentation that is outdated.
When converting a block signature, a `BlockTypeConversionRewrit
llvmbot wrote:
@llvm/pr-subscribers-mlir-core
Author: Matthias Springer (matthias-springer)
Changes
This commit moves the argument materialization logic from
`legalizeConvertedArgumentTypes` to `legalizeUnresolvedMaterializations`.
Before this change:
- Argument materializations were cre
llvmbot wrote:
@llvm/pr-subscribers-mlir
Author: Matthias Springer (matthias-springer)
Changes
This commit moves the argument materialization logic from
`legalizeConvertedArgumentTypes` to `legalizeUnresolvedMaterializations`.
Before this change:
- Argument materializations were created
@@ -671,4 +672,51 @@ static inline bool isEqual(const Fortran::lower::SomeExpr
*x,
}
} // end namespace Fortran::lower
+// OpenMP utility functions used in locations outside of the
+// OpenMP lowering.
+namespace Fortran::lower::omp {
+
+[[maybe_unused]] static void fillMembe
@@ -30,17 +30,17 @@ subroutine mapType_array
!$omp end target
end subroutine mapType_array
-!CHECK: @.offload_sizes{{.*}} = private unnamed_addr constant [3 x i64] [i64
0, i64 24, i64 4]
-!CHECK: @.offload_maptypes{{.*}} = private unnamed_addr constant [3 x i64]
[i64 32, i
@@ -671,4 +672,51 @@ static inline bool isEqual(const Fortran::lower::SomeExpr
*x,
}
} // end namespace Fortran::lower
+// OpenMP utility functions used in locations outside of the
+// OpenMP lowering.
+namespace Fortran::lower::omp {
+
+[[maybe_unused]] static void fillMembe
@@ -52,12 +52,22 @@ using DeclareTargetCapturePair =
struct OmpMapMemberIndicesData {
// The indices representing the component members placement in its derived
// type parents hierarchy.
- llvm::SmallVector memberPlacementIndices;
+ llvm::SmallVector> memberPlacementIndi
https://github.com/agozillon commented:
Tried to reply to some of your initial comments and questions @ergawy !
Hopefully helpful :-) and no question is a newbie question, they're all very
appreciated as it makes me re-question myself which helps spot things I
overlooked!
I'll update the PR a
@@ -141,6 +143,110 @@ createMapInfoOp(fir::FirOpBuilder &builder,
mlir::Location loc,
return op;
}
+omp::ObjectList gatherObjects(omp::Object obj,
+ semantics::SemanticsContext &semaCtx) {
+ omp::ObjectList objList;
+ std::optional baseObj = g
@@ -141,6 +143,110 @@ createMapInfoOp(fir::FirOpBuilder &builder,
mlir::Location loc,
return op;
}
+omp::ObjectList gatherObjects(omp::Object obj,
+ semantics::SemanticsContext &semaCtx) {
+ omp::ObjectList objList;
+ std::optional baseObj = g
@@ -141,6 +143,110 @@ createMapInfoOp(fir::FirOpBuilder &builder,
mlir::Location loc,
return op;
}
+omp::ObjectList gatherObjects(omp::Object obj,
+ semantics::SemanticsContext &semaCtx) {
+ omp::ObjectList objList;
+ std::optional baseObj = g
https://github.com/agozillon edited
https://github.com/llvm/llvm-project/pull/96266
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -953,6 +954,22 @@ bool ClauseProcessor::processMap(
if (origSymbol && fir::isTypeWithDescriptor(origSymbol.getType()))
symAddr = origSymbol;
+ if (object.sym()->owner().IsDerivedType()) {
+omp::ObjectList objectList = gatherObjects
@@ -141,6 +143,110 @@ createMapInfoOp(fir::FirOpBuilder &builder,
mlir::Location loc,
return op;
}
+omp::ObjectList gatherObjects(omp::Object obj,
+ semantics::SemanticsContext &semaCtx) {
+ omp::ObjectList objList;
+ std::optional baseObj = g
llvmbot wrote:
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Fangrui Song (MaskRay)
Changes
Similar to #98958.
---
Full diff: https://github.com/llvm/llvm-project/pull/98959.diff
9 Files Affected:
- (modified) compiler-rt/lib/tsan/rtl/tsan_defs.h (+1-1)
- (modified) compiler-rt/
Author: cor3ntin
Date: 2024-07-16T10:59:38+02:00
New Revision: 97a9ef1c1810b88102d097d334b2017cce782390
URL:
https://github.com/llvm/llvm-project/commit/97a9ef1c1810b88102d097d334b2017cce782390
DIFF:
https://github.com/llvm/llvm-project/commit/97a9ef1c1810b88102d097d334b2017cce782390.diff
LOG:
Author: Vitaly Buka
Date: 2024-07-16T09:53:13-07:00
New Revision: ddc8e9d34306177966a3f46e8eefc3d4a0c7c8ef
URL:
https://github.com/llvm/llvm-project/commit/ddc8e9d34306177966a3f46e8eefc3d4a0c7c8ef
DIFF:
https://github.com/llvm/llvm-project/commit/ddc8e9d34306177966a3f46e8eefc3d4a0c7c8ef.diff
L
Author: Aaron Ballman
Date: 2024-07-16T14:46:21-04:00
New Revision: 7f876acbe41766b20f8fd9df77a00bdb4a4cc30c
URL:
https://github.com/llvm/llvm-project/commit/7f876acbe41766b20f8fd9df77a00bdb4a4cc30c
DIFF:
https://github.com/llvm/llvm-project/commit/7f876acbe41766b20f8fd9df77a00bdb4a4cc30c.diff
Author: Daniel Thornburgh
Date: 2024-07-16T12:18:41-07:00
New Revision: 601bd9d8648398ffa1fe69f48304c2369e97e2db
URL:
https://github.com/llvm/llvm-project/commit/601bd9d8648398ffa1fe69f48304c2369e97e2db
DIFF:
https://github.com/llvm/llvm-project/commit/601bd9d8648398ffa1fe69f48304c2369e97e2db.d
Author: Daniel Thornburgh
Date: 2024-07-16T14:09:39-07:00
New Revision: a4c3229ed0dac390bd3585f4cda5a1daaa3e97fc
URL:
https://github.com/llvm/llvm-project/commit/a4c3229ed0dac390bd3585f4cda5a1daaa3e97fc
DIFF:
https://github.com/llvm/llvm-project/commit/a4c3229ed0dac390bd3585f4cda5a1daaa3e97fc.d
https://github.com/pcc created https://github.com/llvm/llvm-project/pull/99260
We can use UMAXV.4S to reduce the comparison result in a single
instruction. This improves performance by roughly 4% on Apple M1:
Summary
bin/libc.src.string.bcmp_benchmark3 --study-name="new bcmp" --sweep-mode
--s
llvmbot wrote:
@llvm/pr-subscribers-libc
Author: None (pcc)
Changes
We can use UMAXV.4S to reduce the comparison result in a single
instruction. This improves performance by roughly 4% on Apple M1:
Summary
bin/libc.src.string.bcmp_benchmark3 --study-name="new bcmp" --sweep-mode
--sweep
https://github.com/lntue edited https://github.com/llvm/llvm-project/pull/99260
___
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-libcxx
Author: Mark de Wever (mordante)
Changes
Implements parts of:
- P1902R1 Missing feature-test macros 2017-2019
Completes:
- P1614R2 The Mothership has Landed
---
Full diff: https://github.com/llvm/llvm-project/pull/99375.diff
9 Files Affected:
Author: Teresa Johnson
Date: 2024-07-17T14:00:53-07:00
New Revision: 109ff32145687a96e7ef72f9d4f8f3bf45fe2b17
URL:
https://github.com/llvm/llvm-project/commit/109ff32145687a96e7ef72f9d4f8f3bf45fe2b17
DIFF:
https://github.com/llvm/llvm-project/commit/109ff32145687a96e7ef72f9d4f8f3bf45fe2b17.diff
Author: aaryanshukla
Date: 2024-07-17T17:15:01-07:00
New Revision: d0b2fea44b78ef5f60ecfcaecee9d704d1cdea80
URL:
https://github.com/llvm/llvm-project/commit/d0b2fea44b78ef5f60ecfcaecee9d704d1cdea80
DIFF:
https://github.com/llvm/llvm-project/commit/d0b2fea44b78ef5f60ecfcaecee9d704d1cdea80.diff
Author: aaryanshukla
Date: 2024-07-17T17:16:23-07:00
New Revision: aff9c628a0d9efab790186b5d683196b900318f6
URL:
https://github.com/llvm/llvm-project/commit/aff9c628a0d9efab790186b5d683196b900318f6
DIFF:
https://github.com/llvm/llvm-project/commit/aff9c628a0d9efab790186b5d683196b900318f6.diff
Author: aaryanshukla
Date: 2024-07-17T17:16:43-07:00
New Revision: 472dfe7d8af66a2a0c9d9a83ffb26b4aacff17fd
URL:
https://github.com/llvm/llvm-project/commit/472dfe7d8af66a2a0c9d9a83ffb26b4aacff17fd
DIFF:
https://github.com/llvm/llvm-project/commit/472dfe7d8af66a2a0c9d9a83ffb26b4aacff17fd.diff
https://github.com/agozillon edited
https://github.com/llvm/llvm-project/pull/96266
___
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/agozillon commented:
Answered a couple more of the review comments to hopefully help explain things
a little bit better! I'll try to update this PR stack on Friday to reflect all
the current review comments, thank you very much for your time and help @ergawy
:-)
https://g
@@ -219,6 +430,33 @@ class OMPMapInfoFinalizationPass
mapClauseOwner.getMapOperandsMutable().assign(newMapOps);
agozillon wrote:
It shouldn't (at least if I am understanding your comment correctly), I believe
this little snippet misses the preceding block o
@@ -85,67 +135,227 @@ class OMPMapInfoFinalizationPass
descriptor = alloca;
}
+return descriptor;
+ }
+
+ /// Simple function that will generate a FIR operation accessing
+ /// the descriptors base address (BoxOffsetOp) and then generate a
+ /// MapInfoOp for
@@ -85,67 +135,227 @@ class OMPMapInfoFinalizationPass
descriptor = alloca;
}
+return descriptor;
+ }
+
+ /// Simple function that will generate a FIR operation accessing
+ /// the descriptors base address (BoxOffsetOp) and then generate a
+ /// MapInfoOp for
Author: Pavel Labath
Date: 2024-07-18T10:10:38+02:00
New Revision: 72cb20f417d48810bff7826e949ffddbaf93a721
URL:
https://github.com/llvm/llvm-project/commit/72cb20f417d48810bff7826e949ffddbaf93a721
DIFF:
https://github.com/llvm/llvm-project/commit/72cb20f417d48810bff7826e949ffddbaf93a721.diff
https://github.com/wangleiat created
https://github.com/llvm/llvm-project/pull/99486
None
___
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-lld-elf
Author: wanglei (wangleiat)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/99486.diff
2 Files Affected:
- (modified) lld/ELF/Arch/LoongArch.cpp (+9)
- (modified) lld/test/ELF/loongarch-tls-le.s (+44-3)
``diff
di
llvmbot wrote:
@llvm/pr-subscribers-lld
Author: wanglei (wangleiat)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/99486.diff
2 Files Affected:
- (modified) lld/ELF/Arch/LoongArch.cpp (+9)
- (modified) lld/test/ELF/loongarch-tls-le.s (+44-3)
``diff
diff -
https://github.com/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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-flang-openmp
Author: Sergio Afonso (skatrak)
Changes
Currently, there are some inconsistencies to how clause arguments are named in
the OpenMP dialect. Additionally, the clause operand structures associated to
them also diverge in certain cases. The pu
llvmbot wrote:
@llvm/pr-subscribers-mlir
@llvm/pr-subscribers-flang-fir-hlfir
@llvm/pr-subscribers-mlir-llvm
Author: Sergio Afonso (skatrak)
Changes
Currently, there are some inconsistencies to how clause arguments are named in
the OpenMP dialect. Additionally, the clause operand structur
llvmbot wrote:
@llvm/pr-subscribers-mlir-openmp
Author: Sergio Afonso (skatrak)
Changes
Currently, there are some inconsistencies to how clause arguments are named in
the OpenMP dialect. Additionally, the clause operand structures associated to
them also diverge in certain cases. The pur
llvmbot wrote:
@llvm/pr-subscribers-mlir-openmp
Author: Sergio Afonso (skatrak)
Changes
This patch introduces a new OpenMP clause definition not defined by the spec.
Its main purpose is to define the `loop_inclusive` (previously "inclusive",
renamed according to the parent of this PR in
llvmbot wrote:
@llvm/pr-subscribers-mlir-llvm
Author: Sergio Afonso (skatrak)
Changes
This patch introduces a new OpenMP clause definition not defined by the spec.
Its main purpose is to define the `loop_inclusive` (previously "inclusive",
renamed according to the parent of this PR in th
llvmbot wrote:
@llvm/pr-subscribers-mlir-openmp
Author: Sergio Afonso (skatrak)
Changes
This patch adds the missing `OpenMP_Clause` definitions to all existing
`OpenMP_Op`s and updates their operand structure based builders to initialize
the new arguments.
The result of this change is t
llvmbot wrote:
@llvm/pr-subscribers-mlir
Author: Sergio Afonso (skatrak)
Changes
This patch adds the missing `OpenMP_Clause` definitions to all existing
`OpenMP_Op`s and updates their operand structure based builders to initialize
the new arguments.
The result of this change is that ope
llvmbot wrote:
@llvm/pr-subscribers-flang-openmp
Author: Sergio Afonso (skatrak)
Changes
This patch adds the missing `OpenMP_Clause` definitions to all existing
`OpenMP_Op`s and updates their operand structure based builders to initialize
the new arguments.
The result of this change is
llvmbot wrote:
@llvm/pr-subscribers-mlir-openmp
@llvm/pr-subscribers-mlir-ods
Author: Sergio Afonso (skatrak)
Changes
This patch adds the "gen-openmp-clause-ops" `mlir-tblgen` generator to produce
the structure definitions previously in OpenMPClauseOperands.h automatically
from the infor
llvmbot wrote:
@llvm/pr-subscribers-mlir
Author: Sergio Afonso (skatrak)
Changes
This patch adds the "gen-openmp-clause-ops" `mlir-tblgen` generator to produce
the structure definitions previously in OpenMPClauseOperands.h automatically
from the information contained in OpenMPOps.td and
llvmbot wrote:
@llvm/pr-subscribers-mlir-core
Author: Sergio Afonso (skatrak)
Changes
This patch adds the "gen-openmp-clause-ops" `mlir-tblgen` generator to produce
the structure definitions previously in OpenMPClauseOperands.h automatically
from the information contained in OpenMPOps.td
Author: Utkarsh Saxena
Date: 2024-07-18T19:47:06+02:00
New Revision: 532a2f4a7405a37413fac10f772aa2d83c8d57a3
URL:
https://github.com/llvm/llvm-project/commit/532a2f4a7405a37413fac10f772aa2d83c8d57a3
DIFF:
https://github.com/llvm/llvm-project/commit/532a2f4a7405a37413fac10f772aa2d83c8d57a3.diff
llvmbot wrote:
@llvm/pr-subscribers-bolt
Author: Amir Ayupov (aaupov)
Changes
Read pseudo probes in regular and BAT YAML profile generation, and
attach them to YAML profile basic blocks. This exposes GUID, probe id,
and probe type in profile for future use in stale profile matching.
Test
Author: Schrodinger ZHU Yifan
Date: 2024-07-18T13:29:32-07:00
New Revision: 635c7a937b7e4f593af53054bff07c86ca00e51c
URL:
https://github.com/llvm/llvm-project/commit/635c7a937b7e4f593af53054bff07c86ca00e51c
DIFF:
https://github.com/llvm/llvm-project/commit/635c7a937b7e4f593af53054bff07c86ca00e5
https://github.com/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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/wangleiat updated
https://github.com/llvm/llvm-project/pull/99486
___
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-tools-extra
@llvm/pr-subscribers-clang-tidy
Author: Paul Kirth (ilovepi)
Changes
This adds a few FixIts that update the usage of namespaces other than
LIBC_NAMESPACE_DECL, and add the required header when its missing.
---
Full diff: https://githu
llvmbot wrote:
@llvm/pr-subscribers-backend-arm
Author: Matt Arsenault (arsenm)
Changes
Avoid getting this from the MachineFunction
---
Patch is 20.14 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/99688.diff
11 Files Affected:
- (modified)
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
@llvm/pr-subscribers-backend-aarch64
Author: Matt Arsenault (arsenm)
Changes
Avoid getting this from the MachineFunction
---
Patch is 20.14 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/99688
llvmbot wrote:
@llvm/pr-subscribers-llvm-selectiondag
Author: Matt Arsenault (arsenm)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/99696.diff
8 Files Affected:
- (modified) llvm/include/llvm/CodeGen/SelectionDAG.h (+6-3)
- (modified) llvm/include/llvm/CodeGen/Sele
llvmbot wrote:
@llvm/pr-subscribers-debuginfo
Author: Matt Arsenault (arsenm)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/99751.diff
2 Files Affected:
- (modified) llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp (+6-5)
- (modified) llvm/lib/CodeGen/AsmPrinter/DwarfCFI
Author: Schrodinger ZHU Yifan
Date: 2024-07-20T08:04:24-07:00
New Revision: 9130500ce71f5ec38182ac8b397d8e6ab846782e
URL:
https://github.com/llvm/llvm-project/commit/9130500ce71f5ec38182ac8b397d8e6ab846782e
DIFF:
https://github.com/llvm/llvm-project/commit/9130500ce71f5ec38182ac8b397d8e6ab84678
Author: Vitaly Buka
Date: 2024-07-20T12:19:14-07:00
New Revision: 1629eb6c05867047669f3b242f884182e4249d86
URL:
https://github.com/llvm/llvm-project/commit/1629eb6c05867047669f3b242f884182e4249d86
DIFF:
https://github.com/llvm/llvm-project/commit/1629eb6c05867047669f3b242f884182e4249d86.diff
L
Author: Vitaly Buka
Date: 2024-07-20T12:20:56-07:00
New Revision: 918587576c66f2640161c1b54fb128b0eb103880
URL:
https://github.com/llvm/llvm-project/commit/918587576c66f2640161c1b54fb128b0eb103880
DIFF:
https://github.com/llvm/llvm-project/commit/918587576c66f2640161c1b54fb128b0eb103880.diff
L
Author: hev
Date: 2024-07-21T09:30:48+08:00
New Revision: 3deacfb6a58ea3dcae27807209dffb227e9c786c
URL:
https://github.com/llvm/llvm-project/commit/3deacfb6a58ea3dcae27807209dffb227e9c786c
DIFF:
https://github.com/llvm/llvm-project/commit/3deacfb6a58ea3dcae27807209dffb227e9c786c.diff
LOG: Reve
Author: yronglin
Date: 2024-07-22T13:16:19+08:00
New Revision: 3830c428298d0f781e1a82d1885d8903e7169c4d
URL:
https://github.com/llvm/llvm-project/commit/3830c428298d0f781e1a82d1885d8903e7169c4d
DIFF:
https://github.com/llvm/llvm-project/commit/3830c428298d0f781e1a82d1885d8903e7169c4d.diff
LOG:
Author: Max Beck-Jones
Date: 2024-07-22T10:24:54+01:00
New Revision: ebf0fc9ae845af15baed663d79a5e4e88542f1e4
URL:
https://github.com/llvm/llvm-project/commit/ebf0fc9ae845af15baed663d79a5e4e88542f1e4
DIFF:
https://github.com/llvm/llvm-project/commit/ebf0fc9ae845af15baed663d79a5e4e88542f1e4.diff
Author: Lukacma
Date: 2024-07-22T12:32:23+01:00
New Revision: 9fb427c61f9444e90bad89b14723f1c369f67aad
URL:
https://github.com/llvm/llvm-project/commit/9fb427c61f9444e90bad89b14723f1c369f67aad
DIFF:
https://github.com/llvm/llvm-project/commit/9fb427c61f9444e90bad89b14723f1c369f67aad.diff
LOG:
Author: RoseZhang03
Date: 2024-07-22T15:25:52-07:00
New Revision: 052f002d33e247b9e00994a100bf32531fefe615
URL:
https://github.com/llvm/llvm-project/commit/052f002d33e247b9e00994a100bf32531fefe615
DIFF:
https://github.com/llvm/llvm-project/commit/052f002d33e247b9e00994a100bf32531fefe615.diff
L
h-vetinari wrote:
This now closes #100018
https://github.com/llvm/llvm-project/pull/99375
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: Piotr Zegar
Date: 2024-07-23T08:46:14+02:00
New Revision: a96af6c18ea45269c4d2e1fd762a14d763be0358
URL:
https://github.com/llvm/llvm-project/commit/a96af6c18ea45269c4d2e1fd762a14d763be0358
DIFF:
https://github.com/llvm/llvm-project/commit/a96af6c18ea45269c4d2e1fd762a14d763be0358.diff
L
Author: Petr Hosek
Date: 2024-07-23T01:18:55-07:00
New Revision: 32ec3b4f547f9af8cd2af736cd7c00843ef69a93
URL:
https://github.com/llvm/llvm-project/commit/32ec3b4f547f9af8cd2af736cd7c00843ef69a93
DIFF:
https://github.com/llvm/llvm-project/commit/32ec3b4f547f9af8cd2af736cd7c00843ef69a93.diff
LO
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/100094
Backport b48819dbcdb48fc737dc22304ac343e4fdbae9ff
Requested by: @nikic
>From 36301dee358a56dbf3b79ab748444e364d0cb382 Mon Sep 17 00:00:00 2001
From: Nikita Popov
Date: Tue, 23 Jul 2024 12:00:53 +0200
Subject:
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/100094
___
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-backend-powerpc
Author: None (llvmbot)
Changes
Backport b48819dbcdb48fc737dc22304ac343e4fdbae9ff
Requested by: @nikic
---
Patch is 26.62 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/100094.diff
6 Files
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
Author: Florian Hahn (fhahn)
Changes
As discussed in https://github.com/llvm/llvm-project/pull/92555 flip the
default for the option added in
https://github.com/llvm/llvm-project/pull/99536 to true.
This restores the original behavior
https://github.com/wangleiat created
https://github.com/llvm/llvm-project/pull/100105
None
___
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-lld-elf
Author: wanglei (wangleiat)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/100105.diff
5 Files Affected:
- (modified) lld/ELF/Arch/LoongArch.cpp (+10)
- (modified) lld/ELF/Relocations.cpp (+2-1)
- (added) lld/test/ELF/loo
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/100141
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/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/100141
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/100141
Backport 9628777
Requested by: @ldionne
>From f281cb2886edb46067606b62163e0c3d6cdfd965 Mon Sep 17 00:00:00 2001
From: PaulXiCao
Date: Tue, 23 Jul 2024 15:11:44 +
Subject: [PATCH] [libc++][math] Fix undue o
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: None (llvmbot)
Changes
Backport 9628777
Requested by: @ldionne
---
Full diff: https://github.com/llvm/llvm-project/pull/100141.diff
8 Files Affected:
- (modified) libcxx/include/__math/hypot.h (+89)
- (modified) libcxx/include/cmath
https://github.com/llvmbot created
https://github.com/llvm/llvm-project/pull/100145
Backport c2e4386
Requested by: @ldionne
>From 8325799d41659bd1ff72ed3d628732f2a72a5dc8 Mon Sep 17 00:00:00 2001
From: Mark de Wever
Date: Tue, 23 Jul 2024 18:03:28 +0200
Subject: [PATCH] [libc++][vector] Tests
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/100145
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/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/100145
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: None (llvmbot)
Changes
Backport c2e4386
Requested by: @ldionne
---
Full diff: https://github.com/llvm/llvm-project/pull/100145.diff
1 Files Affected:
- (modified)
libcxx/test/std/containers/sequences/vector.bool/shrink_to_fit.pass.cp
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/100149
___
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/100149
Backport d0ca9f2
Requested by: @ldionne
>From c264db19ef5ac5de02596ebb8ff3774394c871b4 Mon Sep 17 00:00:00 2001
From: Mark de Wever
Date: Tue, 23 Jul 2024 18:13:22 +0200
Subject: [PATCH] [libc++][string] Fixes
401 - 500 of 55021 matches
Mail list logo