https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71524
Alexander Monakov changed:
What|Removed |Added
CC||amonakov at gcc dot gnu.org
--- Comm
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71478
Andrew Pinski changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71650
Andrew Pinski changed:
What|Removed |Added
Severity|normal |enhancement
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71386
--- Comment #3 from Anton Mitrokhin ---
I see those warnings with -O3, but not with -O0. Why is that?
I also do not see what is wrong with the code.
Note, that clang with all warnings enabled (and ub sanitizer!) will also not
produce any warning
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71386
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71386
--- Comment #5 from Marc Glisse ---
(In reply to Anton Mitrokhin from comment #3)
> I see those warnings with -O3, but not with -O0. Why is that?
As the documentation says, this warning depends on optimizations. A bogus
optimization that breaks
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71666
Bug ID: 71666
Summary: profile-generate not documented
Product: gcc
Version: 7.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: web
Assig
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71666
--- Comment #1 from Andrew Pinski ---
https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html#index-fprofile-generate-957
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71667
Bug ID: 71667
Summary: [7 Regression] ICE in as_a, at is-a.h:192 w/ -g -O2
-ftree-vectorize
Product: gcc
Version: 7.0
Status: UNCONFIRMED
Severity: normal
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71666
--- Comment #2 from vincenzo Innocente ---
ok so is just the sentence "" See Optimize Options" which needs to be
changed...
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71386
--- Comment #6 from Marc Glisse ---
Slightly simpler
template
auto List(XS...xs)
{
return [=](auto processList){return processList(xs...);};
};
auto l1 = List(42);
auto foo = [](auto... xs1)
{
return [=]()
{
return l1([=](au
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71524
--- Comment #3 from H.J. Lu ---
(In reply to H.J. Lu from comment #1)
> It is caused by r70018.
Oops. It was caused by r235065.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
--- Comment #3 from Jonathan Wakely ---
I'm not very motivated to debug this "code", please make sure you try the
options suggested at https://gcc.gnu.org/bugs/ to be sure the sanitizers don't
find a problem.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
--- Comment #4 from Jonathan Wakely ---
Also compile with -D_GLIBCXX_DEBUG
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69775
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69849
Andrew Pinski changed:
What|Removed |Added
Keywords||documentation
Status|UNCONFI
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71345
Andrew Pinski changed:
What|Removed |Added
Keywords||diagnostic
Status|UNCONFIRME
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71503
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |7.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71463
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71563
Andrew Pinski changed:
What|Removed |Added
Keywords||missed-optimization
Target Milestone|-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71569
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |5.5
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71577
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71575
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71570
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71626
Andrew Pinski changed:
What|Removed |Added
Component|c |middle-end
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |7.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71633
Andrew Pinski changed:
What|Removed |Added
Keywords||ice-on-valid-code
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71640
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |7.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71623
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |5.5
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71630
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |5.5
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71652
Andrew Pinski changed:
What|Removed |Added
Keywords||error-recovery,
|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654
Andrew Pinski changed:
What|Removed |Added
CC||pinskia at gcc dot gnu.org
Target Mile
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
--- Comment #5 from Anton Mitrokhin ---
I have compiled this test case in several ways
The first two emit no warnings and fail as described:
> g++ -Wall -Wextra -std=c++11 -static-libgcc -static-libstdc++ -Ofast
> -march=westmere -o out crash_i
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71660
Andrew Pinski changed:
What|Removed |Added
Keywords||ABI
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71553
Andrew Pinski changed:
What|Removed |Added
Keywords||ice-on-valid-code
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71624
Andrew Pinski changed:
What|Removed |Added
Keywords||ice-on-valid-code
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71667
Andrew Pinski changed:
What|Removed |Added
Keywords||ice-on-valid-code
Target|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43714
Peter VARGA changed:
What|Removed |Added
CC||developm...@faf-ltd.com
--- Comment #3 fro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71623
vehre at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |ASSIGNED
Assignee|un
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71668
Bug ID: 71668
Summary: certain bitfields get negative DW_AT_bit_offset
Product: gcc
Version: 5.3.0
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50168
Aliaksei Kandratsenka changed:
What|Removed |Added
CC||alkondratenko at gmail dot com
-
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71668
--- Comment #1 from Andrew Pinski ---
Is this on a little-endian or big-endian target?
Read http://www.dwarfstd.org/ShowIssue.php?issue=081130.1 on why
DW_AT_bit_offset is deprecated in DWARF Version 4.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71668
--- Comment #2 from Andrew Pinski ---
(In reply to Andrew Pinski from comment #1)
> Is this on a little-endian or big-endian target?
It is little-endian. Note that dwarf issues explains this fully. Basically
DW_AT_bit_offset is defined nicely
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71668
--- Comment #3 from Andrew Pinski ---
bug 71669 for using DW_AT_data_bit_offset .
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71669
Bug ID: 71669
Summary: DW_AT_data_bit_offset is not emitted for dwarf4 and
above
Product: gcc
Version: 6.1.0
Status: UNCONFIRMED
Severity: enhancement
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71669
--- Comment #1 from Andrew Pinski ---
Note GDB does not support it yet:
https://sourceware.org/bugzilla/show_bug.cgi?id=12616
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71668
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
--- Comment #6 from Jonathan Wakely ---
The code is not readable. Where do you initialise v13?
This is not reasonable code.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
Uroš Bizjak changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70902
--- Comment #4 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Jun 26 20:56:34 2016
New Revision: 237792
URL: https://gcc.gnu.org/viewcvs?rev=237792&root=gcc&view=rev
Log:
PR target/70902
PR target/71453
PR target/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71453
--- Comment #3 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Jun 26 20:56:34 2016
New Revision: 237792
URL: https://gcc.gnu.org/viewcvs?rev=237792&root=gcc&view=rev
Log:
PR target/70902
PR target/71453
PR target/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
--- Comment #8 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Jun 26 20:56:34 2016
New Revision: 237792
URL: https://gcc.gnu.org/viewcvs?rev=237792&root=gcc&view=rev
Log:
PR target/70902
PR target/71453
PR target/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71596
--- Comment #3 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Jun 26 20:56:34 2016
New Revision: 237792
URL: https://gcc.gnu.org/viewcvs?rev=237792&root=gcc&view=rev
Log:
PR target/70902
PR target/71453
PR target/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71555
--- Comment #3 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Jun 26 20:56:34 2016
New Revision: 237792
URL: https://gcc.gnu.org/viewcvs?rev=237792&root=gcc&view=rev
Log:
PR target/70902
PR target/71453
PR target/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70902
Uroš Bizjak changed:
What|Removed |Added
Status|NEW |SUSPENDED
--- Comment #5 from Uroš Bizjak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71453
Uroš Bizjak changed:
What|Removed |Added
Status|UNCONFIRMED |SUSPENDED
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71555
Uroš Bizjak changed:
What|Removed |Added
Status|NEW |SUSPENDED
--- Comment #4 from Uroš Bizjak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71596
Uroš Bizjak changed:
What|Removed |Added
Status|NEW |SUSPENDED
--- Comment #4 from Uroš Bizjak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71657
Uroš Bizjak changed:
What|Removed |Added
Status|NEW |SUSPENDED
--- Comment #9 from Uroš Bizjak
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70473
--- Comment #8 from Benda Xu ---
(In reply to BillyBarty from comment #7)
> I was having this same issue building gcc 5.2.0 on my Raspberry Pi 3.
Thank you for your report. Is your Raspberry Pi 3 running aarch64 (arm64) or
arm (32 bit)?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70473
--- Comment #9 from BillyBarty ---
(In reply to Benda Xu from comment #8)
> (In reply to BillyBarty from comment #7)
> > I was having this same issue building gcc 5.2.0 on my Raspberry Pi 3.
>
> Thank you for your report. Is your Raspberry Pi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71670
Bug ID: 71670
Summary: powerpc64le ICE in extract_constrain_insn with
-mcpu=power9
Product: gcc
Version: 7.0
Status: UNCONFIRMED
Severity: normal
Prio
--enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160626 (experimental) [trunk revision 237789] (GCC)
$
$ gcc-trunk -c -Wmissing-braces check.c
check.c:1:15: warning: missing braces around initializer [-Wmissing-braces]
int a[3][1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71670
--- Comment #1 from Segher Boessenkool ---
I have a fix.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71671
Bug ID: 71671
Summary: g++: internal compiler error: Killed (program cc1plus)
Product: gcc
Version: 5.0
Status: UNCONFIRMED
Severity: major
Priority: P3
Componen
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71671
Andrew Pinski changed:
What|Removed |Added
Keywords||memory-hog
Severity|major
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71671
--- Comment #2 from vineeshvs ---
(In reply to Andrew Pinski from comment #1)
> >g++: internal compiler error: Killed (program cc1plus)
>
> How much RAM do you have? What target is this on?
RAM: 3.7 GiB
--
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71671
--- Comment #3 from vineeshvs ---
(In reply to vineeshvs from comment #2)
> (In reply to Andrew Pinski from comment #1)
> > >g++: internal compiler error: Killed (program cc1plus)
> >
> > How much RAM do you have? What target is this on?
>
> R
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71672
Bug ID: 71672
Summary: inlining indirect calls does not work with autofdo
Product: gcc
Version: 7.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component:
70 matches
Mail list logo