https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115867
Richard Biener changed:
What|Removed |Added
Target||x86_64-*-*
Blocks|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115867
Bug ID: 115867
Summary: ICE: tree check: expected vector_type, have
integer_type in TYPE_VECTOR_SUBPARTS, at tree.h:4246
Product: gcc
Version: 14.1.1
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115861
Richard Biener changed:
What|Removed |Added
Keywords||error-recovery,
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115842
Hongtao Liu changed:
What|Removed |Added
Last reconfirmed||2024-07-11
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115860
Richard Biener changed:
What|Removed |Added
Target Milestone|--- |15.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115866
Andrew Pinski changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115841
--- Comment #3 from Richard Biener ---
Same IL but no ICE:
static unsigned char xl[132];
void jerate (unsigned char *, unsigned char *, unsigned char *, unsigned char
*);
float foo (unsigned n)
{
unsigned char A170[132];
unsigned char A166
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115866
Bug ID: 115866
Summary: missed optimization vectorizing switch statements.
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Keywords: missed-optimization
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
--- Comment #4 from Li Pan ---
(In reply to H.J. Lu from comment #3)
> This may be fixed by r15-1954.
Thank HJ, this makes much sense to me.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115862
Andrew Pinski changed:
What|Removed |Added
CC||lu_zero at gentoo dot org
--- Comment #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115794
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115794
--- Comment #3 from Andrew Pinski ---
My bet this is the same as PR 115862 which now has a reduced testcase.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115862
Andrew Pinski changed:
What|Removed |Added
Summary|[15] RISC-V: ICE during RTL |[15 Regression] RISC-V: ICE
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115862
Andrew Pinski changed:
What|Removed |Added
Attachment #58631|0 |1
is obsolete|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115862
--- Comment #1 from Andrew Pinski ---
Created attachment 58631
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58631&action=edit
Reduced a lot
`-march=rv64gcv_zvl512b -O2`
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115865
Andrew Pinski changed:
What|Removed |Added
Summary|[14/15 Regression] ICE with |[14/15 Regression] ICE with
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115865
Andrew Pinski changed:
What|Removed |Added
Keywords|error-recovery, |ice-on-valid-code,
|i
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113680
Jasmine Tang changed:
What|Removed |Added
CC||tanghocle456 at gmail dot com
--- Commen
, 3 };
int y = x;
}
Using built-in specs.
COLLECT_GCC=/opt/compiler-explorer/gcc-snapshot/bin/g++
Target: x86_64-linux-gnu
Configured with: ../gcc-trunk-20240710/configure
--prefix=/opt/compiler-explorer/gcc-build/staging
--enable-libstdcxx-backtrace=yes --build=x86_64-linux-gnu
--host
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111890
Harry Butterworth changed:
What|Removed |Added
CC||heb1001 at gmail dot com
--- Commen
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #7 from Andrew Pinski ---
Note ubsan (-fsanitize=undefined) gives an runtime message as expected:
/app/example.cpp:11:17: runtime error: signed integer overflow: 65535 * 65535
cannot be represented in type 'int'
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #6 from Andrew Pinski ---
Yes doing:
uint32_t q = ((uint32_t)ah) * ((uint32_t)bl);
uint32_t r = ((uint32_t)al) * ((uint32_t)bh);
"Fixes" the issue by avoiding signed integer overflows (which is undefined).
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #5 from Andrew Pinski ---
Well just use:
((unsigned)al)*((unsigned)bh)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #4 from Michael Zucchi ---
ok thought it might be something like that. is there any way to prevent it?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #2 from Michael Zutti ---
Created attachment 58630
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58630&action=edit
output of gcc -v
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
--- Comment #1 from Michael Zutti ---
Created attachment 58629
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58629&action=edit
preprocessed file
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115864
Bug ID: 115864
Summary: right shift being optimised out incorrectly
Product: gcc
Version: 14.1.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: tr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
--- Comment #3 from H.J. Lu ---
This may be fixed by r15-1954.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
--- Comment #2 from H.J. Lu ---
See:
https://gcc.gnu.org/pipermail/gcc-regression/2024-July/080225.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
--- Comment #1 from Li Pan ---
Thanks for reporting this.
It should be this "stream.avail_out = left > (uLong)max ? max : (uInt)left;"
which HIT the .SAT_TRUNC. Aka below pattern.
+/* Unsigned saturation truncate, case 2, sizeof (WT) > sizeof
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113719
Alexandre Oliva changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |aoliva at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |15.0
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115863
Bug ID: 115863
Summary: [15 Regression] zlib-1.3.1 miscompilation since
r15-1936-g80e446e829d818
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Severity: norma
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115857
Andrew Pinski changed:
What|Removed |Added
CC||pinskia at gcc dot gnu.org
Se
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108619
Jonathan Wakely changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |redi at gcc dot gnu.org
--- Co
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114387
Jonathan Wakely changed:
What|Removed |Added
Status|SUSPENDED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114387
--- Comment #2 from GCC Commits ---
The master branch has been updated by Jonathan Wakely :
https://gcc.gnu.org/g:d8cd8521185436ea45ed48c5dd481277e9b8a98d
commit r15-1958-gd8cd8521185436ea45ed48c5dd481277e9b8a98d
Author: Jonathan Wakely
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115854
Jonathan Wakely changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115854
--- Comment #3 from GCC Commits ---
The master branch has been updated by Jonathan Wakely :
https://gcc.gnu.org/g:c5efc6eca8e3eee7038ae218cf7e2dbe9ed9d82a
commit r15-1956-gc5efc6eca8e3eee7038ae218cf7e2dbe9ed9d82a
Author: Jonathan Wakely
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115799
--- Comment #10 from GCC Commits ---
The master branch has been updated by Jonathan Wakely :
https://gcc.gnu.org/g:cda469a59e222496248025e0834a15d466f79d4a
commit r15-1955-gcda469a59e222496248025e0834a15d466f79d4a
Author: Jonathan Wakely
Date
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115862
Bug ID: 115862
Summary: [15] RISC-V: ICE during RTL combine pass in malloc.c
for zvl512b and zvl1024b
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Severity:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114525
Simon Martin changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|unassigned a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107186
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
Uroš Bizjak changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
--- Comment #16 from GCC Commits ---
The releases/gcc-11 branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:d67566cefe7325998cc2471a28e9d3a3016455a0
commit r11-11568-gd67566cefe7325998cc2471a28e9d3a3016455a0
Author: Uros Bizjak
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107256
Marek Polacek changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|unassigned
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115642
Marek Polacek changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115549
Marek Polacek changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115642
--- Comment #2 from GCC Commits ---
The trunk branch has been updated by Marek Polacek :
https://gcc.gnu.org/g:0c27eade4754c13a54e265e4305182c95be1e441
commit r15-1952-g0c27eade4754c13a54e265e4305182c95be1e441
Author: Marek Polacek
Date: Tu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115549
--- Comment #4 from GCC Commits ---
The trunk branch has been updated by Marek Polacek :
https://gcc.gnu.org/g:4c7009735f73f59c9a635d79c048c8981310e331
commit r15-1951-g4c7009735f73f59c9a635d79c048c8981310e331
Author: Marek Polacek
Date: Th
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
--- Comment #15 from GCC Commits ---
The releases/gcc-12 branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:10904e051f1b970cd8e030dff7dec8374c946b12
commit r12-10610-g10904e051f1b970cd8e030dff7dec8374c946b12
Author: Uros Bizjak
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
--- Comment #14 from GCC Commits ---
The releases/gcc-13 branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:cc47ad09e571016f498710fbd8a19f302c9004de
commit r13-8903-gcc47ad09e571016f498710fbd8a19f302c9004de
Author: Uros Bizjak
Dat
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65
--- Comment #26 from Arsen Arsenović ---
hmm, may be best to apply cvise to attempt to reduce the problem further then
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111078
Andrew Pinski changed:
What|Removed |Added
Assignee|pzheng at gcc dot gnu.org |pinskia at gcc dot
gnu.org
---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80922
Andrea Bocci changed:
What|Removed |Added
CC||fwyzard at gmail dot com
--- Comment #12
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115854
Jonathan Wakely changed:
What|Removed |Added
Last reconfirmed||2024-07-10
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105090
--- Comment #13 from GCC Commits ---
The releases/gcc-13 branch has been updated by Torbjorn Svensson
:
https://gcc.gnu.org/g:4f6f63f2cfcc62d6d893f301ea6aa4f6365624ba
commit r13-8902-g4f6f63f2cfcc62d6d893f301ea6aa4f6365624ba
Author: Torbjörn S
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104688
--- Comment #36 from Richard Henderson ---
(In reply to Mayshao-oc from comment #34)
> (In reply to Jakub Jelinek from comment #17)
> > Fixed for AMD on the library side too.
> > We need a statement from Zhaoxin and VIA for their CPUs.
>
> Sorr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105090
--- Comment #12 from GCC Commits ---
The releases/gcc-14 branch has been updated by Torbjorn Svensson
:
https://gcc.gnu.org/g:e7d81cf551bcbf6cfa7612c1dc3c83fef036b3e1
commit r14-10405-ge7d81cf551bcbf6cfa7612c1dc3c83fef036b3e1
Author: Torbjörn
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105090
--- Comment #11 from GCC Commits ---
The master branch has been updated by Torbjorn Svensson :
https://gcc.gnu.org/g:4865a92b35054fdfaa1318a4c1f56d95d44012a2
commit r15-1950-g4865a92b35054fdfaa1318a4c1f56d95d44012a2
Author: Torbjörn SVENSSON
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115645
Marek Polacek changed:
What|Removed |Added
Summary|[11/12/13/14/15 Regression] |[11/12/13/14 Regression]
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115645
--- Comment #3 from GCC Commits ---
The trunk branch has been updated by Marek Polacek :
https://gcc.gnu.org/g:fde96e8205f343e6471a11cc9def967bb5dd5362
commit r15-1946-gfde96e8205f343e6471a11cc9def967bb5dd5362
Author: Marek Polacek
Date: Tu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105090
--- Comment #10 from Torbjorn SVENSSON ---
I've sent a patch that drops the lsr check:
https://gcc.gnu.org/pipermail/gcc-patches/2024-July/656871.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115785
--- Comment #2 from Richard Sandiford ---
The patch in #c1 is just part 1. Part 2 will fix the bug.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115785
--- Comment #1 from GCC Commits ---
The trunk branch has been updated by Richard Sandiford :
https://gcc.gnu.org/g:e08ebd7d77a216ee2313b585c370333c66497b53
commit r15-1944-ge08ebd7d77a216ee2313b585c370333c66497b53
Author: Richard Sandiford
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115861
Bug ID: 115861
Summary: ICE: tree check: expected template_decl, have overload
in cplus_decl_attributes, at cp/decl2.cc:1896 with
deprecated attribute
Product: gcc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115860
Bug ID: 115860
Summary: Register pairs and regrename
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Keywords: wrong-code
Severity: normal
Priority: P3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115859
Bug ID: 115859
Summary: ICE: in lower_stmt, at gimple-low.cc:724 with -g and
__attribute__((optimize(3)))
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Severi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113968
--- Comment #2 from GCC Commits ---
The trunk branch has been updated by Jason Merrill :
https://gcc.gnu.org/g:c829042849da4e82668db8c845ef0847264c8687
commit r15-1942-gc829042849da4e82668db8c845ef0847264c8687
Author: Nina Ranns
Date: Thu J
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115823
Gaius Mulley changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115823
--- Comment #3 from GCC Commits ---
The master branch has been updated by Gaius Mulley :
https://gcc.gnu.org/g:2d1f68e7965795dc66db83bc7840ba7a23eeb01b
commit r15-1940-g2d1f68e7965795dc66db83bc7840ba7a23eeb01b
Author: Gaius Mulley
Date: Wed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114401
Jonathan Wakely changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113704
Jonathan Wakely changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114401
--- Comment #7 from GCC Commits ---
The releases/gcc-11 branch has been updated by Jonathan Wakely
:
https://gcc.gnu.org/g:69ce8e406a2aa0aba5dcae5e419503ec105355b0
commit r11-11567-g69ce8e406a2aa0aba5dcae5e419503ec105355b0
Author: Jonathan Wak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115823
Gaius Mulley changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115823
--- Comment #1 from Gaius Mulley ---
Created attachment 58626
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58626&action=edit
Proposed fix
Thanks for the bug report, confirmed and here is a proposed patch.
The bug fix changes gcc/m2/gm2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115841
--- Comment #2 from Richard Biener ---
[local count: 955630228]:
# sfn11s_17 = PHI
# sfn12s_2 = PHI
# kr_4 = PHI
# ivtmp_966 = PHI
_420 = kr_4 + -1;
_205 = (long int) _420;
fk_206 = MEM [(float[0:D.7057] *)&A.170][_205];
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
--- Comment #13 from GCC Commits ---
The releases/gcc-14 branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:47a8b464d2dd9a586a9e15242c9825e39e1ecd4c
commit r14-10404-g47a8b464d2dd9a586a9e15242c9825e39e1ecd4c
Author: Uros Bizjak
Da
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115836
--- Comment #12 from GCC Commits ---
The master branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:44933fdeb338e00c972e42224b9a83d3f8f6a757
commit r15-1939-g44933fdeb338e00c972e42224b9a83d3f8f6a757
Author: Uros Bizjak
Date: Wed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115855
Sam James changed:
What|Removed |Added
Status|WAITING |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82904
--- Comment #16 from Andre Vehreschild ---
Patch proposed at: https://gcc.gnu.org/pipermail/fortran/2024-July/060648.html
Note the patch addresses the IPA-problem only.
The issue with the coarray not getting the assigned string correctly, stil
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115394
--- Comment #2 from GCC Commits ---
The master branch has been updated by Prathamesh Kulkarni
:
https://gcc.gnu.org/g:23c2e6de305b8a9e44041d54e587f1333f06134c
commit r15-1937-g23c2e6de305b8a9e44041d54e587f1333f06134c
Author: Prathamesh Kulkarn
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115857
Richard Biener changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115856
Filip Kastl changed:
What|Removed |Added
CC||crazylht at gmail dot com
--- Comment #1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115825
Richard Biener changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115825
--- Comment #9 from Richard Biener ---
It's odd that you see
Loop 1 iterates 7 times.
Loop 1 iterates at most 7 times.
Loop 1 likely iterates at most 7 times.
Estimating sizes for loop 1
BB: 3, after_exit: 0
size: 1 v ={v} i_10;
size:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105090
--- Comment #9 from Richard Earnshaw ---
It looks like the compiler now merges b into a rather than a into b. The
result is the same, though and we don't need an lsr this way. Technically it
ought to be better.
But we do end up in a dance wit
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115858
Bug ID: 115858
Summary: Incompatibility of coroutines and alloca()
Product: gcc
Version: 14.1.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115825
--- Comment #8 from Georg-Johann Lay ---
Created attachment 58625
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58625&action=edit
unroll-Os.c.112t.cunrolli
(In reply to Richard Biener from comment #6)
> can you paste more context from th
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115825
--- Comment #7 from Georg-Johann Lay ---
Created attachment 58624
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58624&action=edit
unroll-Os.c.182t.cunroll
(In reply to Richard Biener from comment #6)
> can you paste more context from the
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78466
Andre Vehreschild changed:
What|Removed |Added
Status|ASSIGNED|WAITING
--- Comment #3 from Andre Ve
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115857
Bug ID: 115857
Summary: New missed optimisation for hamming weight to simple
popcnt
Product: gcc
Version: 15.0
Status: UNCONFIRMED
Severity: normal
P
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115856
Filip Kastl changed:
What|Removed |Added
Version|14.0|15.0
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115856
Bug ID: 115856
Summary: [15 Regression] 7% slowdown of 433.milc on Zen3
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: needs-bisection
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115854
--- Comment #1 from Jonathan Wakely ---
I thought I'd opened a bug report about this years ago, but maybe I just
mentioned it on the mailing list.
I have a local patch somewhere that does:
--- a/libstdc++-v3/testsuite/util/testsuite_allocator.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115855
Richard Biener changed:
What|Removed |Added
CC||hubicka at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115855
Richard Biener changed:
What|Removed |Added
Last reconfirmed||2024-07-10
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115846
Jonathan Wakely changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115846
--- Comment #10 from Jonathan Wakely ---
If you construct an optional that contains a value, then of course it's
destroyed, and then the destructor needs to be usable in constant expressions:
#include
struct S { ~S() { } };
S s;
static_assert(
1 - 100 of 110 matches
Mail list logo