https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94029
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94029
--- Comment #18 from sandra at gcc dot gnu.org ---
I'm seeing the missing gcov file on nios2-linux-gnu as well. Git revision
6e00d8dcf32ace6588a1a4843dfcc0e8b9f9d00f.
I took another look at the testcase. I haven't used gcov f
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
--- Comment #11 from sandra at gcc dot gnu.org ---
RTL before sched2 does look sane and similar to that generated for x86 with
-m32.
I've been trying to step through sched2. I think that where things get
interesting is the ca
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
--- Comment #13 from sandra at gcc dot gnu.org ---
Well, no. The problem is that the scheduler is moving
ldw r2, 0(r4)
ahead of
stw zero, 0(r5)
which is incorrect because the pointers in r4 and r5 are aliases.
So at
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
--- Comment #15 from sandra at gcc dot gnu.org ---
Hmmm. I've gone over this code 2 or 3 times now, and I'm still convinced the
problem is in the alias analysis, not the scheduler.
I've stepped deeper into the code in the debugg
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
--- Comment #18 from sandra at gcc dot gnu.org ---
Hmmm, it looks to me like things are going wrong in the tree fre1 pass too. I
commented out the redundant zero store in the test case to see what would
happen, like
long __attribute__((noipa
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93946
--- Comment #22 from sandra at gcc dot gnu.org ---
My nios2-elf test results look good now with this patch. Thanks!
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93847
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
Component: analyzer
Assignee: dmalcolm at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
gcc.dg/analyzer/explode-2.c triggers a -Wanalyzer-too-complex diagnostic when
compiled as C++, but not as C:
$ x86_64-linux-gnu-g++ /path/to/gcc/testsuite/gcc.dg
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96395
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
Created attachment 49007
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=49007&action=edit
c and c++ dump files
If the test case gcc.dg/tree-ssa/ss
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97125
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97125
--- Comment #6 from sandra at gcc dot gnu.org ---
Yeah, that looks like an easy fix. Thanks for tracking it down.
: normal
Priority: P3
Component: other
Assignee: unassigned at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
There's a little bit of high-level guidance about compiler diagnostics in the
"User Experience Guidelines"
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #2 from sandra at gcc dot gnu.org ---
As I suspected, MIPS has exactly the same bug. It generates GP-relative
addressing in get_flexible and get_flexible_nonzero, and puts flexible_nonzero
in .sdata instead of .data.
This isn
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #3 from sandra at gcc dot gnu.org ---
Created attachment 47233
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47233&action=edit
buggy MIPS output for test case
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #4 from sandra at gcc dot gnu.org ---
Hmmm, the plot thickens. The comment on int_size_in_bytes in tree.c says:
/* Return the size of TYPE (in bytes) as a wide integer
or return -1 if the size can vary or
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=951
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #5 from sandra at gcc dot gnu.org ---
Richard Sandiford complained that my patch to not put objects containing
flexible arrays in small data was an ABI change for references across
compilation units, so I've been taking another
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #6 from sandra at gcc dot gnu.org ---
Created attachment 47346
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47346&action=edit
improved test case with global/external cases as well as local
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #7 from sandra at gcc dot gnu.org ---
Created attachment 47347
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47347&action=edit
nios2 output for improved test case, -O2 -mgpopt=global
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #8 from sandra at gcc dot gnu.org ---
Created attachment 47348
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=47348&action=edit
mips output for improved test case, -O2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92622
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #9 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Mon Dec 2 03:52:15 2019
New Revision: 278891
URL: https://gcc.gnu.org/viewcvs?rev=278891&root=gcc&view=rev
Log:
2019-12-01 Sandra Loosemore
Fix bugs rel
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #10 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Tue Dec 3 02:44:41 2019
New Revision: 278919
URL: https://gcc.gnu.org/viewcvs?rev=278919&root=gcc&view=rev
Log:
2019-12-02 Sandra Loosemore
Fix bugs rel
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92499
--- Comment #11 from sandra at gcc dot gnu.org ---
I've committed a patch to fix this for nios2 only to mainline and the GCC 9
branch.
I did consider an alternate 1-line fix to target-independent code:
Index: gcc/var
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93316
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88999
--- Comment #4 from sandra at gcc dot gnu.org ---
I've been taking another look at this issue. It looks like the trouble is that
the "checking for S_ISREG or S_IFREG" test in the configure script is failing
because it tries t
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88999
--- Comment #5 from sandra at gcc dot gnu.org ---
This may be the same as PR 79193. I'll check and see whether the patch
attached to that issue fixes it.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88999
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79193
--- Comment #5 from sandra at gcc dot gnu.org ---
*** Bug 88999 has been marked as a duplicate of this bug. ***
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88284
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90690
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90467
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53633
--- Comment #3 from sandra at gcc dot gnu.org 2012-07-25 18:08:11 UTC ---
Author: sandra
Date: Wed Jul 25 18:08:06 2012
New Revision: 189860
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=189860
Log:
2012-07-25 Sandra L
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50380
--- Comment #5 from sandra at gcc dot gnu.org 2011-12-19 20:29:27 UTC ---
Author: sandra
Date: Mon Dec 19 20:29:21 2011
New Revision: 182498
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=182498
Log:
2011-12-19 Sandra L
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59447
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #10 from sandra at gcc dot gnu.org ---
Patch was posted here. I'd like some review on methodology for the
mechanically-generated parts before checking in the whole mess.
https://gcc.gnu.org/ml/gcc-patches/2018-12/msg01732.html
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #11 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Jan 9 21:37:45 2019
New Revision: 267783
URL: https://gcc.gnu.org/viewcvs?rev=267783&root=gcc&view=rev
Log:
2019-01-09 Sandra Loosemore
PR other/16
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #12 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Jan 9 21:39:49 2019
New Revision: 267784
URL: https://gcc.gnu.org/viewcvs?rev=267784&root=gcc&view=rev
Log:
2019-01-09 Sandra Loosemore
PR other/16
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #13 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Jan 9 21:41:36 2019
New Revision: 267785
URL: https://gcc.gnu.org/viewcvs?rev=267785&root=gcc&view=rev
Log:
2019-01-09 Sandra Loosemore
PR other/16
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #14 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Jan 9 21:44:56 2019
New Revision: 267786
URL: https://gcc.gnu.org/viewcvs?rev=267786&root=gcc&view=rev
Log:
2019-01-09 Sandra Loosemore
PR other/16
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
--- Comment #15 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Jan 9 21:46:45 2019
New Revision: 267787
URL: https://gcc.gnu.org/viewcvs?rev=267787&root=gcc&view=rev
Log:
2019-01-09 Sandra Loosemore
PR other/16
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=16615
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86756
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
I'm seeing some libstdc++ test regressions on nios2-elf testing on mainline.
The symptoms are assertion failures about the resul
ormal
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
On nios2-elf, I'm seeing
FAIL: 28_regex/headers/regex/parallel_mode.cc (test for excess errors)
Specifically:
In file inc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83889
--- Comment #4 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Wed Sep 11 20:53:46 2019
New Revision: 275667
URL: https://gcc.gnu.org/viewcvs?rev=275667&root=gcc&view=rev
Log:
2019-09-11 Sandra Loosemore
PR testsui
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83889
--- Comment #5 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sat Sep 14 19:00:15 2019
New Revision: 275718
URL: https://gcc.gnu.org/viewcvs?rev=275718&root=gcc&view=rev
Log:
2019-09-14 Sandra Loosemore
PR testsui
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26241
--- Comment #20 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Thu Oct 10 19:44:26 2019
New Revision: 276851
URL: https://gcc.gnu.org/viewcvs?rev=276851&root=gcc&view=rev
Log:
2019-10-10 Xiong Hu Luo
Sandra L
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80409
--- Comment #5 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Tue Feb 26 02:33:26 2019
New Revision: 269203
URL: https://gcc.gnu.org/viewcvs?rev=269203&root=gcc&view=rev
Log:
2019-02-25 Sandra Loosemore
PR
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80409
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79111
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
Priority: P3
Component: other
Assignee: unassigned at gcc dot gnu.org
Reporter: sandra at gcc dot gnu.org
Target Milestone: ---
The existing user documentation for vector extensions (including the type and
variable attributes and not just the Vector Extensions
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82063
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78179
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61024
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85716
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59784
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62130
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80024
--- Comment #1 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sat Oct 27 21:34:43 2018
New Revision: 265561
URL: https://gcc.gnu.org/viewcvs?rev=265561&root=gcc&view=rev
Log:
2018-10-27 Sandra Loosemore
PR targ
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80024
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85035
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85035
--- Comment #4 from sandra at gcc dot gnu.org ---
Created attachment 44912
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44912&action=edit
assembly language output
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86965
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86975
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86965
--- Comment #2 from sandra at gcc dot gnu.org ---
Also see PR86975, which is specifically about that negative constant operand to
the AND expression being generated by the range optimizer.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85035
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87079
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87079
--- Comment #2 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sat Nov 3 18:12:44 2018
New Revision: 265770
URL: https://gcc.gnu.org/viewcvs?rev=265770&root=gcc&view=rev
Log:
2018-11-03 Sandra Loosemore
PR targ
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87079
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78357
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80828
--- Comment #2 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Thu Nov 8 01:26:28 2018
New Revision: 265903
URL: https://gcc.gnu.org/viewcvs?rev=265903&root=gcc&view=rev
Log:
2018-11-07 Sandra Loosemore
PR driv
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80828
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42726
--- Comment #1 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Thu Nov 8 03:37:32 2018
New Revision: 265906
URL: https://gcc.gnu.org/viewcvs?rev=265906&root=gcc&view=rev
Log:
2018-11-07 Sandra Loosemore
PR middle-e
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42726
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81902
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80998
Bug 80998 depends on bug 81902, which changed state.
Bug 81902 Summary: new -fsanitize=pointer-overflow option undocumented
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81902
What|Removed |Added
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54615
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51019
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43105
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36572
--- Comment #1 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Thu Nov 8 22:02:38 2018
New Revision: 265939
URL: https://gcc.gnu.org/viewcvs?rev=265939&root=gcc&view=rev
Log:
2018-11-08 Sandra Loosemore
PR oth
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36572
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41179
--- Comment #4 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Fri Nov 9 20:45:06 2018
New Revision: 265993
URL: https://gcc.gnu.org/viewcvs?rev=265993&root=gcc&view=rev
Log:
2018-11-09 Sandra Loosemore
PR driv
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65703
--- Comment #3 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Fri Nov 9 20:45:06 2018
New Revision: 265993
URL: https://gcc.gnu.org/viewcvs?rev=265993&root=gcc&view=rev
Log:
2018-11-09 Sandra Loosemore
PR driv
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65703
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||sandra at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41179
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65703
--- Comment #5 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sun Nov 11 01:33:53 2018
New Revision: 266008
URL: https://gcc.gnu.org/viewcvs?rev=266008&root=gcc&view=rev
Log:
2018-11-10 Sandra Loosemore
PR middle-e
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65703
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26366
--- Comment #6 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sun Nov 11 18:39:10 2018
New Revision: 266017
URL: https://gcc.gnu.org/viewcvs?rev=266017&root=gcc&view=rev
Log:
2018-11-11 Sandra Loosemore
PR
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26366
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38768
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43105
--- Comment #6 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Sun Nov 11 22:46:00 2018
New Revision: 266020
URL: https://gcc.gnu.org/viewcvs?rev=266020&root=gcc&view=rev
Log:
2018-11-11 Sandra Loosemore
PR c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43105
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79738
sandra at gcc dot gnu.org changed:
What|Removed |Added
CC||msebor at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61588
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69502
--- Comment #3 from sandra at gcc dot gnu.org ---
Author: sandra
Date: Mon Nov 12 06:23:16 2018
New Revision: 266025
URL: https://gcc.gnu.org/viewcvs?rev=266025&root=gcc&view=rev
Log:
2018-11-11 Sandra Loosemore
PR
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69502
sandra at gcc dot gnu.org changed:
What|Removed |Added
Status|NEW |RESOLVED
CC
1 - 100 of 498 matches
Mail list logo