https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95242
--- Comment #4 from Jonathan Wakely ---
It's consteval, the throw is there to make it not a constant expression and
give an error if anything except 0 is used. i.e. it can never throw, it either
compiles or it doesn't.
But I've remembered the pr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95356
Martin Liška changed:
What|Removed |Added
Target Milestone|--- |11.0
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95356
Bug ID: 95356
Summary: [11 Regression] ICE in vect_get_constant_vectors, at
tree-vect-slp.c:3635 since r11-564-g79f0451c67e8ed56
Product: gcc
Version: 11.0
Status: UNCONF
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
--- Comment #3 from Marc Glisse ---
Do you need fr_literal to have size at least 1 (say, when creating an object on
the stack), or can you use the official flexible array member (drop the 1, just
[] in the declaration)?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95340
kargl at gcc dot gnu.org changed:
What|Removed |Added
Priority|P3 |P4
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95146
Thomas Koenig changed:
What|Removed |Added
CC||tkoenig at gcc dot gnu.org
--- Comment #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95242
--- Comment #3 from Daniel Krügler ---
(In reply to Jonathan Wakely from comment #2)
> Another way to implement the __unspec constructor would be:
>
> consteval __unspec(int __n) { if (__n != 0) throw __n; }
>
> But I think I discussed this w
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95252
--- Comment #2 from Kito Cheng ---
Hi Jim:
Not sure which way you will try first, maybe Monk or me can try to fix this by
add bunch of pattern of gpr_save/gpr_restore to model set/use register
correctly?
1715-gbc48456d085-checking-yes-rtl-df-extra-nobootstrap-amd64
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.0.0 20200526 (experimental) (GCC)
The offending instruction is:
vpmovzxbd zmm0, QWORD PTR [rsp+32]
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
H.J. Lu changed:
What|Removed |Added
Status|WAITING |NEW
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95354
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |INVALID
Status|UNCONFIRMED
on attribute."
I guess the warning message by GCC may also incorrect, the correct one should
look like in Clang produced.
I have tested them in recent GCC versions including GCC-8, GCC-9, and GCC-10,
they have the same symptom as well.
My GCC version is
$g++ --version
g++ (GCC) 11.0.0 2020
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95332
--- Comment #3 from John Dong ---
Created attachment 48613
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=48613&action=edit
a patch for gcov-tool modified.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
--- Comment #2 from H.J. Lu ---
Created attachment 48612
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=48612&action=edit
a testcase
$ gcc -O2 x.i -S
/export/gnu/import/git/sources/binutils-gdb-release/gas/config/tc-csky.c: In
function ‘md
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
Andrew Pinski changed:
What|Removed |Added
Status|NEW |WAITING
--- Comment #1 from Andrew Pinsk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
H.J. Lu changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95353
Bug ID: 95353
Summary: [10/11 Regression] GCC can't build binutils
Product: gcc
Version: 10.1.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: midd
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95332
--- Comment #2 from John Dong ---
(In reply to Martin Liška from comment #1)
> Hello.
>
> I support the patch, do you have a copyright agreement and can you send the
> patch to the GCC patches mailing list?
>
> One small nit I noticed:
> /home/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95295
--- Comment #6 from Vsevolod Livinskiy ---
Thank you for such a quick fix!
Sorry about duplicates, I saw different assert messages and thought that they
were different bugs.
I still can see ICE in hoist_memory_references (bug 95283) on trunk. I
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95352
kargl at gcc dot gnu.org changed:
What|Removed |Added
CC||kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95334
--- Comment #2 from Haoxin Tu ---
I also find these cases
test1.cc
#include
bool g_bool = 0;
long g_long = -4075183478711827874L;
const long l_long = 7122990940771016367L;
int main () {
g_bool = g_long * l_long;
std::cout << g_bool <<
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95344
Marek Polacek changed:
What|Removed |Added
Keywords||patch
--- Comment #2 from Marek Polacek
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95352
--- Comment #1 from José Rui Faustino de Sousa ---
On further investigation the ICE is not generated by the extra parenthesis, but
by the use of the lbound intrinsic.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95352
Bug ID: 95352
Summary: ICE on extra parenthesis
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assigne
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95242
--- Comment #2 from Jonathan Wakely ---
Another way to implement the __unspec constructor would be:
consteval __unspec(int __n) { if (__n != 0) throw __n; }
But I think I discussed this with Richard Smith in Prague and we realised there
was a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95344
Marek Polacek changed:
What|Removed |Added
Target Milestone|--- |9.4
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95344
Marek Polacek changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |mpolacek at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95351
--- Comment #2 from Marc Glisse ---
It might not be the issue, but merge_truthop_with_opposite_arm has a suspicious
HONOR_NANS (type) where type is bool: the result of the comparison instead of
one of the arguments.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95306
David Malcolm changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95351
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2020-05-26
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95306
--- Comment #2 from CVS Commits ---
The master branch has been updated by David Malcolm :
https://gcc.gnu.org/g:bf40f0ba95037f235b007a55a7682646a0578b26
commit r11-647-gbf40f0ba95037f235b007a55a7682646a0578b26
Author: David Malcolm
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95344
Marek Polacek changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95158
Jason Merrill changed:
What|Removed |Added
Priority|P3 |P1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95319
Jason Merrill changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95158
Jason Merrill changed:
What|Removed |Added
CC||paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95158
Jason Merrill changed:
What|Removed |Added
Last reconfirmed||2020-05-26
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86490
--- Comment #18 from joe.harvell at netscout dot com ---
Sorry for the chatter...but I noticed the link command line had the same .o/.a
files multiple times (to satisfy order dependencies between them). When I
removed the duplicates and enclosed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95351
Bug ID: 95351
Summary: Comparison with NAN optimizes incorrectly with
-ffast-math disabled
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95104
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Summary|[9/10/11 Regression]|[9/10 Regression] Segfault
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95104
--- Comment #8 from CVS Commits ---
The master branch has been updated by Harald Anlauf :
https://gcc.gnu.org/g:56f03cd12be26828788a27f6f3c250041a958e45
commit r11-646-g56f03cd12be26828788a27f6f3c250041a958e45
Author: Harald Anlauf
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95157
Marek Polacek changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95242
Jason Merrill changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Ever confirmed|0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95350
Bug ID: 95350
Summary: [coroutines] coroutines with move-only by-value
parameters attempt to copy parameter instead of move
it
Product: gcc
Version: 10.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95307
--- Comment #5 from Jakub Jelinek ---
I've tried:
--- gcc/cp/constexpr.c.jj 2020-05-25 10:06:59.886175941 +0200
+++ gcc/cp/constexpr.c 2020-05-26 22:02:23.661355854 +0200
@@ -6196,6 +6196,18 @@ cxx_eval_constant_expression (const cons
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95104
--- Comment #7 from Steve Kargl ---
On Tue, May 26, 2020 at 08:30:36PM +, anlauf at gcc dot gnu.org wrote:
>
> --- Comment #6 from anlauf at gcc dot gnu.org ---
> Steve, do you want me to commit it for you, including backports?
>
I no long
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95288
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95090
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Last reconfirmed||2020-05-26
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95307
--- Comment #4 from Marek Polacek ---
And related to bug 93955.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95301
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
Last recon
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95349
Bug ID: 95349
Summary: Using std::launder(p) produces unexpected behavior
where (p) produces expected behavior
Product: gcc
Version: 10.1.0
Status: UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95322
--- Comment #5 from CVS Commits ---
The master branch has been updated by Patrick Palka :
https://gcc.gnu.org/g:3bf5e7657b752cc2352778e8c20ac9cdddca4f93
commit r11-645-g3bf5e7657b752cc2352778e8c20ac9cdddca4f93
Author: Patrick Palka
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95291
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95348
Bug ID: 95348
Summary: GCC records zero functions and modules in the
profiling data file, ICC does NOT
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95347
Bug ID: 95347
Summary: rs6000 mcpu=future generating stfs instead of pstfs
for pc-relative references
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: n
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95104
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Keywords||wrong-code
--- Comment #6 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95346
Bug ID: 95346
Summary: [coroutines] coroutine return-type should be
initialised with rvalue if different from
get_return_object() return-type
Product: gcc
Version
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68628
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67491
Bug 67491 depends on bug 68628, which changed state.
Bug 68628 Summary: [concepts] ICE: segmentation fault in crash_signal,
toplev.c:334
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68628
What|Removed |Added
--
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95345
Bug ID: 95345
Summary: Fold expressions don't work properly when pack
expression has co_await
Product: gcc
Version: 10.1.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95336
--- Comment #7 from Erick Ochoa ---
I have ran revision 4945b4c2c8628bdd61b348ea5bd1f9b72537a36e with -O3 but all
-O2 and -O3 optimizations disabled except
> -finline-functions [enabled]
> -finline-small-functions
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68395
Marek Polacek changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95104
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=68395
--- Comment #3 from Marek Polacek ---
*** Bug 68394 has been marked as a duplicate of this bug. ***
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67491
Bug 67491 depends on bug 68394, which changed state.
Bug 68394 Summary: [concepts] segfault in valid code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68394
What|Removed |Added
--
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68394
Marek Polacek changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12245
Trass3r changed:
What|Removed |Added
CC||trass3r at gmail dot com
--- Comment #77 from
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95195
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95344
Bug ID: 95344
Summary: Wparentheses (assignment used as truth value) on
parenthesized ternary conditional E2
Product: gcc
Version: 9.1.0
Status: UNCONFIRMED
Sev
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95195
--- Comment #4 from CVS Commits ---
The master branch has been updated by Harald Anlauf :
https://gcc.gnu.org/g:8d8a25b0a7c3400c724e04e1d775d9f377216c04
commit r11-644-g8d8a25b0a7c3400c724e04e1d775d9f377216c04
Author: Harald Anlauf
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95089
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Resolution|--- |FIXED
Status|ASSI
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95333
Eric Botcazou changed:
What|Removed |Added
Target Milestone|--- |11.0
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95333
--- Comment #1 from CVS Commits ---
The master branch has been updated by Eric Botcazou :
https://gcc.gnu.org/g:73655feb9d44829ce2153f4f5eacc37a6268ce73
commit r11-643-g73655feb9d44829ce2153f4f5eacc37a6268ce73
Author: Eric Botcazou
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95089
--- Comment #4 from CVS Commits ---
The master branch has been updated by Harald Anlauf :
https://gcc.gnu.org/g:48d526613961f410a87855ba2fef8909e925d9fa
commit r11-642-g48d526613961f410a87855ba2fef8909e925d9fa
Author: Harald Anlauf
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93467
Patrick Palka changed:
What|Removed |Added
CC||ppalka at gcc dot gnu.org
Known to
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95343
--- Comment #2 from Martin Jambor ---
(In reply to Martin Jambor from comment #1)
> ...I am testing a patch which can make gdb actually show
> the correct 4.
I meant the correct value 2, of course.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95342
--- Comment #3 from kargl at gcc dot gnu.org ---
(In reply to kargl from comment #2)
> (In reply to G. Steinmetz from comment #1)
> > Related :
> >
> >
> > $ cat z2.f90
> > module m
> >interface
> > module function f()
> > end
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95343
Martin Jambor changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |jamborm at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95343
Bug ID: 95343
Summary: IPA-SRA can result in bad debug info about removed
function arguments
Product: gcc
Version: 10.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95336
--- Comment #6 from Martin Jambor ---
(In reply to Erick Ochoa from comment #0)
[...]
> I did a bisection from
>
> commit f47f687a97260b1a1305cbf2d7ee3d74b2916a74
> Author: Richard Biener
> Date: Thu Apr 25 17:58:56 2019 +
>
> to:
>
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95342
kargl at gcc dot gnu.org changed:
What|Removed |Added
CC||kargl at gcc dot gnu.org
--- C
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95261
--- Comment #3 from Bill Seurer ---
I just tried on current trunk and these have cleared up now.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95341
--- Comment #3 from rsandifo at gcc dot gnu.org
---
(In reply to ktkachov from comment #2)
> Interestingly, -msve-vector-bits gives good codegen for 128, 256, 512 but
> bad for 1024, 2048 and VLA code
That's because addition is the one operation
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95341
--- Comment #2 from ktkachov at gcc dot gnu.org ---
Interestingly, -msve-vector-bits gives good codegen for 128, 256, 512 but bad
for 1024, 2048 and VLA code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95263
--- Comment #1 from Nathan Sidwell ---
Reduced:
template class TPL {
template using INT = int;
};
template class Klass
{
public:
template using ALIAS = typename TPL::INT;
template static void FUNC (); // OK
template static ALIAS
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95191
--- Comment #4 from CVS Commits ---
The releases/gcc-10 branch has been updated by Thomas Kथà¤nig
:
https://gcc.gnu.org/g:3633bc27f5925394ccc5dd56bb1c65b4d88b42c0
commit r10-8187-g3633bc27f5925394ccc5dd56bb1c65b4d88b42c0
Author: Thomas Koenig
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95341
ktkachov at gcc dot gnu.org changed:
What|Removed |Added
Ever confirmed|0 |1
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86490
--- Comment #17 from joe.harvell at netscout dot com ---
It looks like this function is never called, by the way.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95342
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95342
Bug ID: 95342
Summary: [9/10/11 Regression] ICE in gfc_match_subroutine, at
fortran/decl.c:7913
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95341
Bug ID: 95341
Summary: Poor vector_size decomposition when SVE is enabled
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95340
Bug ID: 95340
Summary: [10/11 Regression] ICE in gfc_match_select_rank, at
fortran/match.c:6690
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95339
Bug ID: 95339
Summary: ICE in
alloc_scalar_allocatable_for_subcomponent_assignment,
at fortran/trans-expr.c:8002
Product: gcc
Version: 11.0
Status: UN
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95338
Bug ID: 95338
Summary: [9/10/11 Regression] ICE in eliminate_stmt, at
tree-ssa-sccvn.c:5974
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93482
--- Comment #2 from G. Steinmetz ---
Another test case :
$ cat z3.f90
program p
character(2), parameter :: a(3) = ['a1', 'b2', 'c3']
print *, [(a(2:1))]
print *, size([(a(2:1))])
end
Works without parameter attribute :
$ cat z4.f90
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94995
Richard Earnshaw changed:
What|Removed |Added
Priority|P3 |P5
Target|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69493
--- Comment #11 from Segher Boessenkool ---
Why does our unpack expander use UNSPEC_UNPACK_128BIT at all, why
can it not simply generate simple code (without unspecs) directly?
(Same goes for "pack").
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95320
Tobias Burnus changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95320
--- Comment #4 from CVS Commits ---
The master branch has been updated by Tobias Burnus :
https://gcc.gnu.org/g:c5ab336ba106a407a67e84d8faac5b0ea6f18310
commit r11-640-gc5ab336ba106a407a67e84d8faac5b0ea6f18310
Author: Tobias Burnus
Date: Tue
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95336
--- Comment #5 from Erick Ochoa ---
(In reply to Andrew Pinski from comment #4)
> Does -O2 -flto -ftree-vectorize fail also?
It does not fail. I will try to narrow down the problem to an optimization
later today.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66159
--- Comment #6 from Jonathan Wakely ---
Hmm, my patch doesn't actually fix the bogus warning, it just makes it possible
to disable it. A front end wizard will need to fix the real bug.
1 - 100 of 175 matches
Mail list logo