https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #8 from Jonathan Wakely ---
Doh yes, that's just a brain fart
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88770
Peter Cordes changed:
What|Removed |Added
CC||peter at cordes dot ca
--- Comment #2 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99293
Michael Meissner changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |meissner at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99293
--- Comment #3 from Michael Meissner ---
Created attachment 50947
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50947&action=edit
Proposed patch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100921
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |INVALID
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100921
Bug ID: 100921
Summary: Inline assembly use of struct not counted as use for
store elision
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #7 from 康桓瑋 ---
(In reply to Jonathan Wakely from comment #6)
> And LWG 3403 was fixed by r12-1228.
Hey, Jonathan, thank you for your contribution to gcc. Regarding the
implementation of LWG 3403, the return type of __int128 is unsi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25290
Andrew Pinski changed:
What|Removed |Added
URL|https://gcc.gnu.org/piperma |
|il/gcc-patches/2021-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58195
--- Comment #6 from Andrew Pinski ---
Note the loop based one is a little more complex due to the way GCC IR handles
overflow being wrapping or undefined; I am just going to fix the case where
overflow is defined as wrapping. The other case needs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100864
--- Comment #4 from Andrew Pinski ---
(In reply to Richard Biener from comment #3)
> You can possibly merge it with the
That is where I put it already, the ... was actually that part. Obviously this
was not a patch just showing what was done.
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84476
--- Comment #6 from Martin Sebor ---
The same problem applies to attribute noreturn (but not deprecated). Clang,
ICC, and Visual C++ behave as expected in both cases, suggesting GCC should
change.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100920
Bug ID: 100920
Summary: bogus warn on -Wscalar-storage-order
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100919
Martin Sebor changed:
What|Removed |Added
Known to fail||10.2.0, 11.1.0, 12.0,
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100919
Bug ID: 100919
Summary: multiple -Wdeprecated-declarations on a call to a
deprecated member function pointer
Product: gcc
Version: 11.1.0
Status: UNCONFIRMED
S
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70057
Martin Sebor changed:
What|Removed |Added
Known to fail|5.3.0, 6.3.0, 7.0 |10.2.0, 11.1.0, 12.0,
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58073
--- Comment #7 from Andrew Pinski ---
(In reply to Andrew Pinski from comment #6)
>
> And maybe even one like this (which will solve the issue sooner):
>
> (bit_ior
> (cmp (bit_and @0 INTEGER_CST@2) INTEGER_CST@3)
> (cmp @0 INTEGER_CST@5)))
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69972
Martin Sebor changed:
What|Removed |Added
Last reconfirmed|2016-02-29 00:00:00 |2021-6-4
Known to fail|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100912
Andrew Pinski changed:
What|Removed |Added
Last reconfirmed||2021-06-04
Component|libstdc++
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58073
--- Comment #6 from Andrew Pinski ---
#define shift 4
return ((mask(d) == (0x0 << shift)) ||
(mask(d) == (0x1 << shift)) ||
(mask(d) == (0x2 << shift)));
static inline unsigned mask(const struct dentry *d
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51781
Andrew Pinski changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|unassigned a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68557
Andrew Pinski changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|unassigned a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67014
Andrew Pinski changed:
What|Removed |Added
Component|middle-end |ipa
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100102
--- Comment #21 from Eduard Rozenberg ---
@ppalka Huge thanks for this fix - it's working well for me. Very happy to see
the patch applied with no problems to gcc 10.3.0, because it could take several
years until the OS and Nvidia support gcc 11
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65412
--- Comment #4 from Andrew Pinski ---
clang decides at 4 to change it to a switch statement while GCC takes a few
extra ifs to change it. Again this is heuristics at work.
#define B(y) void f##y(void);
#define B10(y) B(y##0) B(y##1) B(y##2)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65412
Andrew Pinski changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95502
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=100918
Patrick Palka changed:
What|Removed |Added
Known to work||8.5.0
Known to fail|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #6 from Jonathan Wakely ---
And LWG 3403 was fixed by r12-1228.
I plan to backport these three patches too.
Thanks for all the bug reports like this!
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #5 from CVS Commits ---
The master branch has been updated by Jonathan Wakely :
https://gcc.gnu.org/g:3e5f2425f80aedd00f28235022a2755eb46f310d
commit r12-1227-g3e5f2425f80aedd00f28235022a2755eb46f310d
Author: Jonathan Wakely
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100918
Patrick Palka changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |ppalka at gcc dot
gnu.org
E
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100918
--- Comment #1 from Patrick Palka ---
We began rejecting this starting with r9-4879.
If we replace the explicit specialization of Inner::~Inner with a generic
definition
struct Outer {
public:
template
struct Inner { ~Inner(); };
};
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100905
Tobias Burnus changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100918
Bug ID: 100918
Summary: Naming a destructor as a qualified template-id results
in bogus access error
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: n
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100809
Michael Meissner changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |meissner at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100168
Michael Meissner changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100917
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50946
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50946&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100917
Bug ID: 100917
Summary: Bind(c): errors handling long double real
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortra
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100916
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50944
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50944&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100916
Bug ID: 100916
Summary: Bind(c): CFI_type_other unimplemented.
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100915
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50942
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50942&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100915
Bug ID: 100915
Summary: Bind(c): failure handling C_FUNPTR
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #4 from Jonathan Wakely ---
Ah yes, the __member_data and __adl_data concepts aren't decaying the result
types.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100914
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50940
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50940&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100914
Bug ID: 100914
Summary: Bind(c): errors handling complex
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100913
Bug ID: 100913
Summary: cppcheck: 2 * pointless new assignments in the parser
?
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Prior
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100905
--- Comment #2 from CVS Commits ---
The master branch has been updated by Tobias Burnus :
https://gcc.gnu.org/g:c7070b31e12c18905ed0a60aaedd7a071aab5c60
commit r12-1226-gc7070b31e12c18905ed0a60aaedd7a071aab5c60
Author: Tobias Burnus
Date: F
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
Iain Buclaw changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
--- Comment #4 from CVS Commits ---
The releases/gcc-9 branch has been updated by Iain Buclaw
:
https://gcc.gnu.org/g:b81bb0a6025588ac752cd78cce74ecf0d9ab4494
commit r9-9569-gb81bb0a6025588ac752cd78cce74ecf0d9ab4494
Author: Iain Buclaw
Date:
able-bootstrap CC=gcc-11
CXX=g++-11
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.0.0 20210604 (experimental) (GCC)
- Build and run simple test program with the new compiler and libstdc++
~/build/gcc> cat ~/test-ieee128.cpp
#include
using namespace std;
int ma
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
--- Comment #3 from CVS Commits ---
The releases/gcc-10 branch has been updated by Iain Buclaw
:
https://gcc.gnu.org/g:dcc5cf980af747941b32fd16c1d6a07177a1a404
commit r10-9891-gdcc5cf980af747941b32fd16c1d6a07177a1a404
Author: Iain Buclaw
Date
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
--- Comment #2 from CVS Commits ---
The releases/gcc-11 branch has been updated by Iain Buclaw
:
https://gcc.gnu.org/g:83f932f23cae74344ec9e67c76faf2f014857992
commit r11-8512-g83f932f23cae74344ec9e67c76faf2f014857992
Author: Iain Buclaw
Date
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
--- Comment #1 from CVS Commits ---
The master branch has been updated by Iain Buclaw :
https://gcc.gnu.org/g:df3fbd5957f12927a459a2686f4eee55f66ec2f4
commit r12-1225-gdf3fbd5957f12927a459a2686f4eee55f66ec2f4
Author: Iain Buclaw
Date: Fri J
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100911
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50938
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50938&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100911
Bug ID: 100911
Summary: Bind(c): failure handling C_PTR
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100909
Peter Bergner changed:
What|Removed |Added
Ever confirmed|0 |1
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100910
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50936
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50936&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100910
Bug ID: 100910
Summary: Bind(c): errors handling long double complex
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: for
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100908
Andrew Pinski changed:
What|Removed |Added
Severity|normal |enhancement
--- Comment #2 from Andrew
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99839
anlauf at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99839
--- Comment #9 from CVS Commits ---
The releases/gcc-9 branch has been updated by Harald Anlauf
:
https://gcc.gnu.org/g:e912880888f9529eb44e3456c4753fc556c63812
commit r9-9568-ge912880888f9529eb44e3456c4753fc556c63812
Author: Harald Anlauf
Dat
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100908
--- Comment #1 from Andreas Krebbel ---
https://gcc.gnu.org/pipermail/gcc/2021-June/236269.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100909
Bug ID: 100909
Summary: powerpc64le: Regression causing unexpected error with
IBM long double
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100893
Patrick Palka changed:
What|Removed |Added
Keywords||rejects-valid
Status|ASSIGN
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100893
--- Comment #2 from CVS Commits ---
The master branch has been updated by Patrick Palka :
https://gcc.gnu.org/g:6f8c9691495ad5a307db98dc19c3296ee4e6de64
commit r12-1224-g6f8c9691495ad5a307db98dc19c3296ee4e6de64
Author: Patrick Palka
Date: F
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100593
--- Comment #11 from Fangrui Song ---
(In reply to Alexander Monakov from comment #10)
> Is there something wrong or undesirable with making this under -fno-plt (or
> the noplt attribute as in your example)?
>
> (after all, it is a kind of PLT-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100618
Fangrui Song changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100908
Bug ID: 100908
Summary: asan clobberes register asm variables
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: middle-end
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99839
--- Comment #8 from CVS Commits ---
The releases/gcc-10 branch has been updated by Harald Anlauf
:
https://gcc.gnu.org/g:df45c5b83447a06e6b15c729807a17409c39ddff
commit r10-9890-gdf45c5b83447a06e6b15c729807a17409c39ddff
Author: Harald Anlauf
D
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100907
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50932
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50932&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100102
--- Comment #20 from CVS Commits ---
The master branch has been updated by Patrick Palka :
https://gcc.gnu.org/g:5357ab75dedef403b0eebf9277d61d1cbeb5898f
commit r12-1223-g5357ab75dedef403b0eebf9277d61d1cbeb5898f
Author: Patrick Palka
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100907
Bug ID: 100907
Summary: Bind(c): failure handling wide character
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100906
--- Comment #1 from José Rui Faustino de Sousa ---
Created attachment 50930
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50930&action=edit
C code for bind(c)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99839
--- Comment #7 from CVS Commits ---
The releases/gcc-11 branch has been updated by Harald Anlauf
:
https://gcc.gnu.org/g:2fdca7cfda7d49f3b252e79acc5933d764e7b77d
commit r11-8511-g2fdca7cfda7d49f3b252e79acc5933d764e7b77d
Author: Harald Anlauf
D
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100906
Bug ID: 100906
Summary: Bind(c): failure handling character with len/=1
Product: gcc
Version: 12.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100783
Martin Sebor changed:
What|Removed |Added
Known to fail|12.0|
Summary|[10/11/12 Regression
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99839
--- Comment #6 from CVS Commits ---
The master branch has been updated by Harald Anlauf :
https://gcc.gnu.org/g:bee8619ad0ac3bd27b7c8dc5819b83a5e8e147a0
commit r12-1222-gbee8619ad0ac3bd27b7c8dc5819b83a5e8e147a0
Author: Harald Anlauf
Date: Fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100783
--- Comment #4 from CVS Commits ---
The master branch has been updated by Martin Sebor :
https://gcc.gnu.org/g:5328cad24f7460a39b2def12bb9b62be36c92a54
commit r12-1221-g5328cad24f7460a39b2def12bb9b62be36c92a54
Author: Martin Sebor
Date: Fri
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
Jonathan Wakely changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
--- Comment #5 from Jonathan Wakely ---
(In reply to M Welinder from comment #2)
> I think the current magic-pointer code could be improved with something like
>
> template>>
> bool operator< (..., T) = delete;
Or another constructor f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
Jonathan Wakely changed:
What|Removed |Added
CC||headch at gmail dot com
--- Comment #
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99778
Jonathan Wakely changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
--- Comment #3 from Jonathan Wakely ---
This is a dup of PR 99778
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100905
--- Comment #1 from Tobias Burnus ---
Tendative patch:
--- a/gcc/tree-nested.c
+++ b/gcc/tree-nested.c
@@ -1484,6 +1484,7 @@ convert_nonlocal_omp_clauses (tree *pclauses, struct
walk_stmt_info *wi)
case OMP_CLAUSE_AUTO:
case OMP
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #3 from 康桓瑋 ---
Another trivial issue is that LWG 3403 is not implemented and the
ranges::data is missing the decay-copy part, making it unable to work with
the following type.
struct A { int*&& data(); };
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100732
Martin Sebor changed:
What|Removed |Added
Summary|[11/12 Regression] ICE with |[11 Regression] ICE on
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100732
--- Comment #4 from CVS Commits ---
The master branch has been updated by Martin Sebor :
https://gcc.gnu.org/g:9816f509db4966fcb90ed3baab72cc6cd901f06c
commit r12-1219-g9816f509db4966fcb90ed3baab72cc6cd901f06c
Author: Martin Sebor
Date: Fri
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100905
Bug ID: 100905
Summary: [OpenMP] ICE in convert_nonlocal_omp_clauses, at
tree-nested.c:1514 with 'omp loop' in Fortran internal
procedure
Product: gcc
Version: 1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100719
Martin Sebor changed:
What|Removed |Added
Known to fail|12.0|
--- Comment #3 from Martin Sebor ---
F
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100719
--- Comment #2 from CVS Commits ---
The master branch has been updated by Martin Sebor :
https://gcc.gnu.org/g:c6503fa93b5565c922f76611a55b0a53cd940a5f
commit r12-1218-gc6503fa93b5565c922f76611a55b0a53cd940a5f
Author: Martin Sebor
Date: Fri
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100904
Bug ID: 100904
Summary: [9/10/11 Regression] Wrong line location #include
error "No such file or directory" – line + 1
[traditional mode as used by gfortran]
Product: gcc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100778
--- Comment #7 from Gabrielle Hugo ---
Dear Richard,
Thanks a lot for confirming the bug, and for posting similar issue bugfix.
Will be interesting to understand why SLP vectorization is still too
aggressive.
Gabrielle
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
--- Comment #2 from M Welinder ---
IMHO, nullptr_t would not be an improvement here. We would still have the
combination of:
(1) Correct usage causing a warning
(2) The warning hinting at using the incorrect nullptr instead.
(3) po>>
bool
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100889
Thomas Rodgers changed:
What|Removed |Added
Status|NEW |ASSIGNED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100637
--- Comment #9 from CVS Commits ---
The master branch has been updated by Uros Bizjak :
https://gcc.gnu.org/g:8d7dae0eb366a88a1baba1857ecc54c09e4a520e
commit r12-1215-g8d7dae0eb366a88a1baba1857ecc54c09e4a520e
Author: Uros Bizjak
Date: Fri J
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100824
--- Comment #2 from CVS Commits ---
The master branch has been updated by Jonathan Wakely :
https://gcc.gnu.org/g:ee9548b36a7f17e8a63585b58f340c93dcba95d8
commit r12-1214-gee9548b36a7f17e8a63585b58f340c93dcba95d8
Author: Jonathan Wakely
Date:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100757
--- Comment #10 from Christophe Lyon ---
The problem is in vec-common.md:
(define_expand "vcond_mask_"
[(set (match_operand:VDQWH 0 "s_register_operand")
(if_then_else:VDQWH
(match_operand: 3 "s_register_operand")
(
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100898
Jakub Jelinek changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |jakub at gcc dot gnu.org
--- Com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100898
Jakub Jelinek changed:
What|Removed |Added
Summary|ICE with -O2: in|[9/10/11/12 Regression] ICE
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
Bug ID: 100903
Summary: Bogus "zero as null pointer constant" warning
Product: gcc
Version: 11.1.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component:
1 - 100 of 119 matches
Mail list logo