https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113754
Bug ID: 113754
Summary: GCC complains when using a type that depends on lambda
Product: gcc
Version: 13.2.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Co
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113755
Bug ID: 113755
Summary: Class without a viable destructor wrongly accepted
Product: gcc
Version: 13.2.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Compon
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113750
Gaius Mulley changed:
What|Removed |Added
CC||gaius at gcc dot gnu.org
Sta
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113754
Andrew Pinski changed:
What|Removed |Added
Blocks||107430
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113742
--- Comment #1 from Kito Cheng ---
Thanks, forward and assigned this to our (SiFive) engineer :)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113756
Bug ID: 113756
Summary: Wrong code at -O2 on x86_64-linux-gnu since
r14-2780-g39f117d6c87
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: wrong-code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113750
--- Comment #3 from Iain Sandoe ---
Created attachment 57317
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=57317&action=edit
gimple for 179t.ifcvt
the label seems OK here.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113750
--- Comment #4 from Iain Sandoe ---
Created attachment 57318
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=57318&action=edit
gimple for 179t.vect
now there's a mem at the start of bb3 with the label following
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113756
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |14.0
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113756
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2024-02-04
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113727
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |14.0
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113755
Andrew Pinski changed:
What|Removed |Added
Ever confirmed|0 |1
Summary|Class without a vi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113755
--- Comment #2 from Andrew Pinski ---
I wonder if the wording changed between the time concepts was originally added
to GCC to the finalization of the C++20 standard; which would describe GCC's
behavior.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
Bug ID: 113757
Summary: [14 regression] ICE when building legion-23.03.0
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
--- Comment #1 from Sam James ---
I will try reduce it but my track record with C++ isn't good ;)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
--- Comment #2 from Sam James ---
needs -O2 -march=znver2 -fPIC (the znver2 is just an artefact of how I built it
though, didn't bother trying it without w/o preprocessed)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110987
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC||anlauf at gcc dot gnu.org,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113758
Bug ID: 113758
Summary: d: Callee destructor call invalidates the live object,
not the temporary
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: norma
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |14.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
--- Comment #3 from Andrew Pinski ---
(In reply to Sam James from comment #1)
> I will try reduce it but my track record with C++ isn't good ;)
I am reducing it too.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
Jakub Jelinek changed:
What|Removed |Added
Ever confirmed|0 |1
Last reconfirmed|
-without-isl
--enable-default-pie --enable-host-pie --enable-host-bind-now
--enable-default-ssp
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 14.0.1 20240204 (experimental)
2ada8bc53e1924b805d5a623d7ce79b20c2a9feb (Gentoo Hardened 14.0.1 p, commit
3ab6b70bf9ee185da7e092e1df20753cdc35d710)
```
I can reproduce with just g++ -c rvlcconceal.ii -O2.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
Andrew Pinski changed:
What|Removed |Added
CC||pinskia at gcc dot gnu.org
Ke
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
--- Comment #1 from Andrew Pinski ---
I suspect r14-8680-g2f14c0dbb78985 .
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
Jakub Jelinek changed:
What|Removed |Added
Summary|[14 regression] ICE when|[14 regression] ICE when
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
--- Comment #3 from Sam James ---
reduced:
```
typedef struct {
struct {
struct {
int erRvlcInfo;
short aRvlcScfFwd[];
} aac;
} overlay;
} CAacDecoderCommonData;
int calcRefValFwd_refNrgFwd, calcRefValFwd_conceal_group_mi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
--- Comment #4 from Andrew Pinski ---
Reduced slightly further:
```
extern short t[];
int f(int c, int b) {
if (b < 0) __builtin_unreachable();
if (c <= 0) __builtin_unreachable();
int d;
for (; c >= 0; c--)
{
int a = b + c;
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113759
--- Comment #5 from Sam James ---
in future, I really need to rename variables too, as it's way easier to see
what's going on then
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113750
Sam James changed:
What|Removed |Added
Summary|[14 Regression] ICE in vect |[14 Regression] ICE in vect
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106531
Andrew Pinski changed:
What|Removed |Added
Assignee|pinskia at gcc dot gnu.org |unassigned at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112896
Li Pan changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
--- Comment #5 from Sam James ---
reduced but with return-type UB:
```
template struct __alloc_traits {
typedef typename _Alloc::value_type &const_reference;
};
struct LegionAllocator {
typedef int value_type;
};
struct vector {
long size
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113757
Andrew Pinski changed:
What|Removed |Added
Keywords|needs-reduction |
--- Comment #6 from Andrew Pinski ---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113583
--- Comment #11 from JuzheZhong ---
Hi, I think this RVV compiler codegen is that optimal codegen we want for RVV:
https://repo.hca.bsc.es/epic/z/P6QXCc
.LBB0_5:# %vector.body
sub a4, t0, a3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113760
Bug ID: 113760
Summary: gcc rejects valid empty-declaration in pedantic mode
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113760
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2024-02-05
Status|UNCONFIRM
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113760
Andrew Pinski changed:
What|Removed |Added
See Also||https://gcc.gnu.org/bugzill
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113760
--- Comment #3 from Andrew Pinski ---
>From JDK bug report:
> It looks like it only removed
> the warnings for empty declarations at namespace scope. I couldn't find
> anything for other cases, including empty class member declarations.
Yes bec
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113750
Tamar Christina changed:
What|Removed |Added
Assignee|gaius at gcc dot gnu.org |tnfchris at gcc dot
gnu.org
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113255
--- Comment #17 from GCC Commits ---
The master branch has been updated by Richard Biener :
https://gcc.gnu.org/g:5b281946c4b51132caf5e5b64c730fef92dd6123
commit r14-8796-g5b281946c4b51132caf5e5b64c730fef92dd6123
Author: Richard Biener
Date:
40 matches
Mail list logo