Author: AtariDreams
Date: 2024-05-28T12:25:31-04:00
New Revision: 92c89fe87fbecafa208de688dff4bfcc760d4e35
URL:
https://github.com/llvm/llvm-project/commit/92c89fe87fbecafa208de688dff4bfcc760d4e35
DIFF:
https://github.com/llvm/llvm-project/commit/92c89fe87fbecafa208de688dff4bfcc760d4e35.diff
L
@@ -292,6 +292,14 @@ void TemplateName::Profile(llvm::FoldingSetNodeID &ID) {
void TemplateName::print(raw_ostream &OS, const PrintingPolicy &Policy,
Qualified Qual) const {
+ auto handleCanonicalTTP = [](TemplateDecl *TD, raw_ostream &OS) {
-
Author: Mehdi Amini
Date: 2024-05-28T19:46:04-06:00
New Revision: ad28187f5490e4d58fee8764340e7d58602ea4c6
URL:
https://github.com/llvm/llvm-project/commit/ad28187f5490e4d58fee8764340e7d58602ea4c6
DIFF:
https://github.com/llvm/llvm-project/commit/ad28187f5490e4d58fee8764340e7d58602ea4c6.diff
L
Author: Michael Buch
Date: 2024-05-29T16:11:31+01:00
New Revision: b054716c51465ca82c87934e7f9970128a3f3562
URL:
https://github.com/llvm/llvm-project/commit/b054716c51465ca82c87934e7f9970128a3f3562
DIFF:
https://github.com/llvm/llvm-project/commit/b054716c51465ca82c87934e7f9970128a3f3562.diff
llvmbot wrote:
@llvm/pr-subscribers-testing-tools
Author: Tom Stellard (tstellar)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/93723.diff
2 Files Affected:
- (modified) llvm/CMakeLists.txt (+1-1)
- (modified) llvm/utils/lit/lit/__init__.py (+1-1)
``diff
Author: Mehdi Amini
Date: 2024-05-29T14:28:05-06:00
New Revision: 4757e13b449c6d4ffa6d5088628c9de64d79e223
URL:
https://github.com/llvm/llvm-project/commit/4757e13b449c6d4ffa6d5088628c9de64d79e223
DIFF:
https://github.com/llvm/llvm-project/commit/4757e13b449c6d4ffa6d5088628c9de64d79e223.diff
L
Author: gulfemsavrun
Date: 2024-05-29T13:44:48-07:00
New Revision: 9f72683d223dd8b05ba5efc7590fbb9c725d55c1
URL:
https://github.com/llvm/llvm-project/commit/9f72683d223dd8b05ba5efc7590fbb9c725d55c1
DIFF:
https://github.com/llvm/llvm-project/commit/9f72683d223dd8b05ba5efc7590fbb9c725d55c1.diff
https://github.com/AtariDreams reopened
https://github.com/llvm/llvm-project/pull/92478
___
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/AtariDreams reopened
https://github.com/llvm/llvm-project/pull/91038
___
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-bolt
Author: Amir Ayupov (aaupov)
Changes
CDSplit splits functions up to three ways: main fragment with no suffix,
and fragments with .cold and .warm suffixes.
Add .warm suffix to the regex used to recognize split fragments.
Test Plan: updated register
llvmbot wrote:
@llvm/pr-subscribers-bolt
Author: Amir Ayupov (aaupov)
Changes
In three-way split functions, if only .warm fragment is present, BAT
incorrectly overwrites the map for .warm fragment by empty .cold
fragment.
Test Plan: updated register-fragments-bolt-symbols.s
---
Full dif
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Matheus Izvekov (mizvekov)
Changes
Implement AST text dumping of the TemplateName for TemplateSpecializationType
and DeducedTemplateSpecializationType.
---
Patch is 39.30 KiB, truncated to 20.00 KiB below, full version:
https://github.c
Author: Mehdi Amini
Date: 2024-05-29T22:47:35-06:00
New Revision: a35c320e18ba2abad17eab0ed162c4115601a828
URL:
https://github.com/llvm/llvm-project/commit/a35c320e18ba2abad17eab0ed162c4115601a828
DIFF:
https://github.com/llvm/llvm-project/commit/a35c320e18ba2abad17eab0ed162c4115601a828.diff
L
Author: Mehdi Amini
Date: 2024-05-29T23:20:35-06:00
New Revision: 52ef9864abecea0cf8d20e7eaf49c256248af5f7
URL:
https://github.com/llvm/llvm-project/commit/52ef9864abecea0cf8d20e7eaf49c256248af5f7
DIFF:
https://github.com/llvm/llvm-project/commit/52ef9864abecea0cf8d20e7eaf49c256248af5f7.diff
L
https://github.com/cor3ntin approved this pull request.
LGTM!
https://github.com/llvm/llvm-project/pull/93766
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
mikaelholmen wrote:
Hello @fmayer !
If I compile this patch with UBSan (-DLLVM_USE_SANITIZER='Undefined') and run
tests, I see the following for many many lit tests:
```
../include/llvm/Support/CommandLine.h:601:13: runtime error: load of value 2,
which is not a valid value for type 'const Rec
https://github.com/AtariDreams updated
https://github.com/llvm/llvm-project/pull/92478
>From b5c3494c41e9b453a81ad730ccd464958f194675 Mon Sep 17 00:00:00 2001
From: Nuri Amari
Date: Wed, 15 May 2024 09:21:02 -0700
Subject: [PATCH] [lld] Fix -ObjC load behavior with LTO (#92162)
When -ObjC is p
llvmbot wrote:
@llvm/pr-subscribers-llvm-support
Author: Ahmed Bougacha (ahmedbougacha)
Changes
Based on the SipHash reference implementation:
https://github.com/veorq/SipHash
which has very graciously been licensed under our llvm license (Apache-2.0 WITH
LLVM-exception) by Jean-Philipp
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Ahmed Bougacha (ahmedbougacha)
Changes
This exposes the ABI-stable hash function that allows computing a 16-bit
discriminator from a constant string.
This allows manually matching the implicit string discriminators computed in
the ABI (e
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
@llvm/pr-subscribers-backend-x86
Author: Ahmed Bougacha (ahmedbougacha)
Changes
This is a constant-expression equivalent to __builtin_ptrauth_sign, allowing
its usage in global initializers, but requiring constant pointers and
discriminat
pcc wrote:
@nico @aeubanks ping.
https://github.com/llvm/llvm-project/pull/88463
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
Author: gulfemsavrun
Date: 2024-05-30T18:49:48-07:00
New Revision: d3cf61ffbea5252db703ca2b7a06d5c4f8aac891
URL:
https://github.com/llvm/llvm-project/commit/d3cf61ffbea5252db703ca2b7a06d5c4f8aac891
DIFF:
https://github.com/llvm/llvm-project/commit/d3cf61ffbea5252db703ca2b7a06d5c4f8aac891.diff
llvmbot wrote:
@llvm/pr-subscribers-llvm-transforms
@llvm/pr-subscribers-pgo
Author: Pavel Samolysov (samolisov)
Changes
Currently, only modules that contain at least a single function
definition are instrumented. When a module contains no function
definitions at all, the module is not ins
mikaelholmen wrote:
> > Hello @fmayer !
> > If I compile this patch with UBSan (-DLLVM_USE_SANITIZER='Undefined') and
> > run tests, I see the following for many many lit tests:
> > ```
> > ../include/llvm/Support/CommandLine.h:601:13: runtime error: load of value
> > 2, which is not a valid va
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Oliver Hunt (ojhunt)
Changes
Minor correction to match current API
---
Full diff: https://github.com/llvm/llvm-project/pull/93984.diff
1 Files Affected:
- (modified) clang/lib/Sema/SemaDeclAttr.cpp (+1-1)
``diff
diff --git a/
github-actions[bot] wrote:
⚠️ We detected that you are using a GitHub private e-mail address to contribute
to the repo. Please turn off [Keep my email addresses
private](https://github.com/settings/emails) setting in your account. See
[LLVM
Discourse](https://discourse.llvm.org/t/hidden-email
Author: Paul T Robinson
Date: 2024-05-31T13:13:21-04:00
New Revision: 8ce093226b730338a8faacb4ef09f97bcbc17515
URL:
https://github.com/llvm/llvm-project/commit/8ce093226b730338a8faacb4ef09f97bcbc17515
DIFF:
https://github.com/llvm/llvm-project/commit/8ce093226b730338a8faacb4ef09f97bcbc17515.dif
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: Oliver Hunt (ojhunt)
Changes
---
Patch is 245.54 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/94054.diff
53 Files Affected:
- (modified) clang/include/clang/AST/ASTContext.h (+13)
Author: gulfemsavrun
Date: 2024-05-31T20:05:03-07:00
New Revision: e6c1256867d6992d5affca539a8dab6541f8db9e
URL:
https://github.com/llvm/llvm-project/commit/e6c1256867d6992d5affca539a8dab6541f8db9e
DIFF:
https://github.com/llvm/llvm-project/commit/e6c1256867d6992d5affca539a8dab6541f8db9e.diff
llvmbot wrote:
@llvm/pr-subscribers-clang-format
Author: Owen Pan (owenca)
Changes
…ing literals (#92214)
---
Full diff: https://github.com/llvm/llvm-project/pull/94091.diff
2 Files Affected:
- (modified) clang/lib/Format/TokenAnnotator.cpp (+5-3)
- (modified) clang/unittests/Format/F
https://github.com/mydeveloperday approved this pull request.
https://github.com/llvm/llvm-project/pull/94091
___
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-codegen
Author: Oliver Hunt (ojhunt)
Changes
---
Patch is 245.54 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/94056.diff
53 Files Affected:
- (modified) clang/include/clang/AST/ASTContext.h (+13)
https://github.com/AtariDreams closed
https://github.com/llvm/llvm-project/pull/91038
___
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/AtariDreams reopened
https://github.com/llvm/llvm-project/pull/91038
___
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/AtariDreams updated
https://github.com/llvm/llvm-project/pull/91038
>From 094e4fbb65a5f24474cbe556f895ee784f6bdffb Mon Sep 17 00:00:00 2001
From: Craig Topper
Date: Fri, 3 May 2024 09:59:33 -0700
Subject: [PATCH 1/2] [DAGCombiner] In mergeTruncStore, make sure we aren't
stor
https://github.com/AtariDreams updated
https://github.com/llvm/llvm-project/pull/91038
>From 094e4fbb65a5f24474cbe556f895ee784f6bdffb Mon Sep 17 00:00:00 2001
From: Craig Topper
Date: Fri, 3 May 2024 09:59:33 -0700
Subject: [PATCH 1/3] [DAGCombiner] In mergeTruncStore, make sure we aren't
stor
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Julian Schmidt (5chmidti)
Changes
The overload that did not take the additional `ASTContext *` argument is
unnecessary when the context could simply be commented out, as it is always
passed to `run` from `VerifyMatcher::run`.
This patch r
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94246
This adds support for GNU %uhi and %ulo extensions.
Those resolve to the same relocations as %hh and %hm.
___
llvm-branch-commits mailing list
llvm-branch-commits@lis
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94247
This adds %set_softint and %clear_softint alias for %asr20 and %asr21
as defined in JPS1.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
http
llvmbot wrote:
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
This adds support for GNU %uhi and %ulo extensions.
Those resolve to the same relocations as %hh and %hm.
---
Full diff: https://github.com/llvm/llvm-project/pull/94246.diff
2 Files Affected:
- (modifi
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94249
This adds named tag constants (such as `#one_write` and `#one_read`)
for the prefetch instruction.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94250
This adds support for `prefetcha` instruction for prefetching from
alternate address spaces.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
h
llvmbot wrote:
@llvm/pr-subscribers-mc
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
This adds %set_softint and %clear_softint alias for %asr20 and %asr21
as defined in JPS1.
---
Full diff: https://github.com/llvm/llvm-project/pull/94247.diff
2 Files Affected:
-
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94251
If the Count passed into writeNopData is not a multiple of four,
add a little amount of zeros before writing the NOP stream.
This makes it match the behavior of GNU binutils.
___
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Julian Schmidt (5chmidti)
Changes
Previously, the examples in the AST matcher reference, which gets generated by
the doxygen comments in `ASTMatchers.h`, were untested and best effort.
Some of the matchers had no or wrong examples of how t
https://github.com/koachan created
https://github.com/llvm/llvm-project/pull/94252
This adds the alternate mnemonics for movrz and movrnz.
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
llvmbot wrote:
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
This adds named tag constants (such as `#one_write` and `#one_read`)
for the prefetch instruction.
---
Full diff: https://github.com/llvm/llvm-project/pull/94249.diff
11 Files Affected:
- (modified) ll
llvmbot wrote:
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
This adds support for `prefetcha` instruction for prefetching from
alternate address spaces.
---
Full diff: https://github.com/llvm/llvm-project/pull/94250.diff
3 Files Affected:
- (modified) llvm/lib/
llvmbot wrote:
@llvm/pr-subscribers-mc
Author: Koakuma (koachan)
Changes
This adds support for `prefetcha` instruction for prefetching from
alternate address spaces.
---
Full diff: https://github.com/llvm/llvm-project/pull/94250.diff
3 Files Affected:
- (modified) llvm/lib/Target/Spar
llvmbot wrote:
@llvm/pr-subscribers-mc
Author: Koakuma (koachan)
Changes
This adds the alternate mnemonics for movrz and movrnz.
---
Full diff: https://github.com/llvm/llvm-project/pull/94252.diff
2 Files Affected:
- (modified) llvm/lib/Target/Sparc/SparcInstrAliases.td (+2)
- (modif
llvmbot wrote:
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
This adds the alternate mnemonics for movrz and movrnz.
---
Full diff: https://github.com/llvm/llvm-project/pull/94252.diff
2 Files Affected:
- (modified) llvm/lib/Target/Sparc/SparcInstrAliases.td (+2
llvmbot wrote:
@llvm/pr-subscribers-backend-sparc
Author: Koakuma (koachan)
Changes
If the Count passed into writeNopData is not a multiple of four,
add a little amount of zeros before writing the NOP stream.
This makes it match the behavior of GNU binutils.
---
Full diff: https://github
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94246
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94247
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94249
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94250
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94251
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
koachan wrote:
Note: this PR was created by `spr`, please do not hand-merge this.
https://github.com/llvm/llvm-project/pull/94252
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: Ahmed Bougacha (ahmedbougacha)
Changes
The functions are currently always signed/authenticated with zero discriminator.
Co-Authored-By: John McCall
---
Patch is 37.62 KiB, truncated to 20.00 KiB below, full v
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: Ahmed Bougacha (ahmedbougacha)
Changes
The functions are currently always signed/authenticated with zero discriminator.
Co-Authored-By: John McCall
---
Patch is 37.62 KiB, truncated to 20.00 KiB below, full ver
@@ -1088,6 +1115,34 @@ ParseStatus SparcAsmParser::parseASITag(OperandVector
&Operands) {
return ParseStatus::Success;
}
+ParseStatus SparcAsmParser::parsePrefetchTag(OperandVector &Operands) {
+ SMLoc S = Parser.getTok().getLoc();
+ SMLoc E = Parser.getTok().getEndLoc();
@@ -557,6 +557,36 @@
! V9: prefetch [%i1+%i2], #one_read ! encoding: [0xc3,0x6e,0x40,0x1a]
prefetch [ %i1 + %i2 ], #one_read
+! V8: error: malformed ASI tag, must be a constant integer
expression
koachan wrote:
Changing them t
Author: Tom Stellard
Date: 2024-06-03T17:50:36-07:00
New Revision: 1ce2d26cd2e912bb168e78ccc049b70a81dab03a
URL:
https://github.com/llvm/llvm-project/commit/1ce2d26cd2e912bb168e78ccc049b70a81dab03a
DIFF:
https://github.com/llvm/llvm-project/commit/1ce2d26cd2e912bb168e78ccc049b70a81dab03a.diff
llvmbot wrote:
@llvm/pr-subscribers-mc
Author: Pengcheng Wang (wangpc-pp)
Changes
According to RVV spec:
> In general, the requirement is to support LMUL ≥ SEWMIN/ELEN,
> where SEWMIN is the narrowest supported SEW value and ELEN is
> the widest supported SEW value.
>
> For a given support
@@ -537,16 +537,26 @@
! V9: stxa %g0, [%g2+%i5] #ASI_SNF ! encoding: [0xc0,0xf0,0x90,0x7d]
stxa %g0, [%g2 + %i5] #ASI_SNF
-! V8: error: instruction requires a CPU feature not currently
enabled
+! V8: error: invalid operand for instr
https://github.com/koachan updated
https://github.com/llvm/llvm-project/pull/94249
>From 2debba6d10e3025ae5b312ef8ef8e1f68bc2b794 Mon Sep 17 00:00:00 2001
From: Koakuma
Date: Tue, 4 Jun 2024 22:30:09 +0700
Subject: [PATCH] Update tests and apply suggestions
Created using spr 1.3.4
---
.../Tar
@@ -557,6 +557,36 @@
! V9: prefetch [%i1+%i2], #one_read ! encoding: [0xc3,0x6e,0x40,0x1a]
prefetch [ %i1 + %i2 ], #one_read
+! V8: error: malformed ASI tag, must be a constant integer
expression
koachan wrote:
Okay, so parseP
https://github.com/github-actions[bot] closed
https://github.com/llvm/llvm-project/pull/94397
___
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:
This repository does not accept pull requests. Please follow
http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution
to LLVM.
https://github.com/llvm/llvm-project/pull/94397
___
llvm-branch-commits mai
https://github.com/github-actions[bot] locked
https://github.com/llvm/llvm-project/pull/94397
___
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/93442
>From 7e6ece9b4f2d37caf8ff7b87603f15ed9ad2d6ec Mon Sep 17 00:00:00 2001
From: Nikita Popov
Date: Mon, 27 May 2024 08:54:11 +0200
Subject: [PATCH] [PPCMergeStringPool] Only replace constant once (#92996)
In #8884
Author: Nikita Popov
Date: 2024-06-04T13:50:32-07:00
New Revision: 7e6ece9b4f2d37caf8ff7b87603f15ed9ad2d6ec
URL:
https://github.com/llvm/llvm-project/commit/7e6ece9b4f2d37caf8ff7b87603f15ed9ad2d6ec
DIFF:
https://github.com/llvm/llvm-project/commit/7e6ece9b4f2d37caf8ff7b87603f15ed9ad2d6ec.diff
pcc wrote:
Hmm, after actually doing a CMake build it doesn't seem to be the CMake default
in fact. It's what you get if you set `LIBCXX_ENABLE_STATIC_ABI_LIBRARY` to
true. I think I got the idea that it was the default after inspecting the NDK
compiler, which was built with `LIBCXX_ENABLE_STA
llvmbot wrote:
@llvm/pr-subscribers-llvm-support
Author: Ahmed Bougacha (ahmedbougacha)
Changes
Start building it as part of the library, with some minor
tweaks compared to the reference implementation:
- clang-format to match libSupport
- remove tracing support
- add file header
- templat
Author: Serge Pavlov
Date: 2024-06-05T10:58:52+07:00
New Revision: 2e96a199a72cdc88e140d0b4dc2a73d32bad762d
URL:
https://github.com/llvm/llvm-project/commit/2e96a199a72cdc88e140d0b4dc2a73d32bad762d
DIFF:
https://github.com/llvm/llvm-project/commit/2e96a199a72cdc88e140d0b4dc2a73d32bad762d.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Wentao Zhang (whentojump)
Changes
Backports #89869 and #91446 (and associated tests in
3591da9f1ccbd8b19fef4814f96638dbbe9c2b40) that fixes missing code regions and
`llvm-cov` crashes.
With them, we are able to measure MC/DC of large C/C
https://github.com/AtariDreams updated
https://github.com/llvm/llvm-project/pull/92478
>From aafe93171093465519add9aeab56c1f7f779f0f9 Mon Sep 17 00:00:00 2001
From: Nuri Amari
Date: Wed, 15 May 2024 09:21:02 -0700
Subject: [PATCH] [lld] Fix -ObjC load behavior with LTO (#92162)
When -ObjC is p
llvmbot wrote:
@llvm/pr-subscribers-flang-openmp
@llvm/pr-subscribers-flang-fir-hlfir
Author: Krzysztof Parzyszek (kparzysz)
Changes
Derived type components may use a given `Symbol` regardless of what parent
objects they are a part of. Because of that, simply using a symbol address is
no
https://github.com/AtariDreams updated
https://github.com/llvm/llvm-project/pull/91038
>From 7f8d5e96e879f2e63a0c751547b4754f2634 Mon Sep 17 00:00:00 2001
From: Craig Topper
Date: Fri, 3 May 2024 09:59:33 -0700
Subject: [PATCH 1/3] [DAGCombiner] In mergeTruncStore, make sure we aren't
stor
https://github.com/AtariDreams updated
https://github.com/llvm/llvm-project/pull/91038
>From a62c1fce19ad9c1bf6899e9b528a07593909be8f Mon Sep 17 00:00:00 2001
From: Craig Topper
Date: Fri, 3 May 2024 09:59:33 -0700
Subject: [PATCH] [DAGCombiner] In mergeTruncStore, make sure we aren't storing
https://github.com/agozillon approved this pull request.
LGTM, and tested it locally and it seems to fix the issue I encountered! Thank
you very much for this fix :-)
https://github.com/llvm/llvm-project/pull/94495
___
llvm-branch-commits mailing lis
Author: Owen Pan
Date: 2024-06-05T14:55:50-07:00
New Revision: 8c0fe0d65ed85966c0ac075e896620c55ca95227
URL:
https://github.com/llvm/llvm-project/commit/8c0fe0d65ed85966c0ac075e896620c55ca95227
DIFF:
https://github.com/llvm/llvm-project/commit/8c0fe0d65ed85966c0ac075e896620c55ca95227.diff
LOG:
Author: Mehdi Amini
Date: 2024-06-05T21:13:29-07:00
New Revision: 60d8b31b055ebc9211ccd1326c8ee73602f71a88
URL:
https://github.com/llvm/llvm-project/commit/60d8b31b055ebc9211ccd1326c8ee73602f71a88
DIFF:
https://github.com/llvm/llvm-project/commit/60d8b31b055ebc9211ccd1326c8ee73602f71a88.diff
L
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 5367b2c862a7bfe138ee17994edfdb7938437064
7a203002b19f5a2827607e73a998dcd1ace9d135 --
llvmbot wrote:
@llvm/pr-subscribers-flang-openmp
Author: Krzysztof Parzyszek (kparzysz)
Changes
The categories are primarily meant for OpenMP, where the spec assigns a
category to each directive. It's one of declarative, executable, informational,
meta, subsidiary, and utility.
These wi
llvmbot wrote:
@llvm/pr-subscribers-openacc
Author: Krzysztof Parzyszek (kparzysz)
Changes
The categories are primarily meant for OpenMP, where the spec assigns a
category to each directive. It's one of declarative, executable, informational,
meta, subsidiary, and utility.
These will be
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Krzysztof Parzyszek (kparzysz)
Changes
Use directive categories to simplify long lists of `case` statements in the
OpenMP parser. This is a step towards avoiding dependence on explicitly
specified sets of directives that can be expressed
@@ -0,0 +1,233 @@
+//===--===//
+//
+// 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: Apa
@@ -0,0 +1,80 @@
+//===--===//
+//
+// 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: Apac
@@ -0,0 +1,233 @@
+//===--===//
+//
+// 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: Apa
@@ -0,0 +1,46 @@
+//===--===//
+//
+// 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: Apac
@@ -0,0 +1,233 @@
+//===--===//
+//
+// 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: Apa
https://github.com/EricWF edited https://github.com/llvm/llvm-project/pull/94670
___
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/EricWF edited https://github.com/llvm/llvm-project/pull/94670
___
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/EricWF edited https://github.com/llvm/llvm-project/pull/94670
___
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/EricWF edited https://github.com/llvm/llvm-project/pull/94670
___
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,46 @@
+//===--===//
+//
+// 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: Apac
@@ -0,0 +1,233 @@
+//===--===//
+//
+// 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: Apa
EricWF wrote:
After implementing a version myself, I think there's a bunch of unneeded
complexity in this type.
I compared the two implementations on a personal compiler-explorer which is set
up to compare libc++ patches (I'm working to provide to other developers).
The use of `__libcpp_alloca
https://github.com/EricWF requested changes to this pull request.
Please see the previous comment for the requested changes.
https://github.com/llvm/llvm-project/pull/94670
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https:/
1 - 100 of 56275 matches
Mail list logo