Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
11e1cfcf
Commit
11e1cfcf
authored
Jun 30, 2020
by
GCC Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Daily bump.
parent
4816bf6a
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
133 additions
and
1 deletions
+133
-1
gcc/ChangeLog
+9
-0
gcc/DATESTAMP
+1
-1
gcc/c-family/ChangeLog
+10
-0
gcc/cp/ChangeLog
+21
-0
gcc/fortran/ChangeLog
+17
-0
gcc/po/ChangeLog
+4
-0
gcc/testsuite/ChangeLog
+60
-0
libstdc++-v3/ChangeLog
+11
-0
No files found.
gcc/ChangeLog
View file @
11e1cfcf
2020-06-29 Jakub Jelinek <jakub@redhat.com>
Backported from master:
2020-06-24 Jakub Jelinek <jakub@redhat.com>
PR middle-end/95810
* fold-const.c (fold_cond_expr_with_comparison): Optimize
A <= 0 ? A : -A into (type)-absu(A) rather than -abs(A).
2020-06-25 H.J. Lu <hjl.tools@gmail.com>
Backported from master:
...
...
gcc/DATESTAMP
View file @
11e1cfcf
202006
29
202006
30
gcc/c-family/ChangeLog
View file @
11e1cfcf
2020
-
06
-
29
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
Backported
from
master
:
2020
-
06
-
27
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
PR
middle
-
end
/
95903
*
c
-
common
.
c
(
pointer_int_sum
):
Use
TYPE_OVERFLOW_UNDEFINED
instead
of
!TYPE_UNSIGNED check to see if we can apply distributive law and handle
smaller
precision
intop
operands
separately
.
2020
-
06
-
14
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
PR
c
/
95580
...
...
gcc/cp/ChangeLog
View file @
11e1cfcf
2020-06-29 Iain Sandoe <iain@sandoe.co.uk>
PR c++/95519
* coroutines.cc (struct coroutine_info):Add a field
to hold computed p.return_void expressions.
(coro_build_promise_expression): New.
(get_coroutine_return_void_expr): New.
(finish_co_yield_expr): Build the promise expression
using coro_build_promise_expression.
(finish_co_return_stmt): Likewise.
(build_init_or_final_await): Likewise.
(morph_fn_to_coro): Likewise, for several cases.
2020-06-29 Iain Sandoe <iain@sandoe.co.uk>
Backported from master:
2020-06-26 Iain Sandoe <iain@sandoe.co.uk>
* coroutines.cc (morph_fn_to_coro): Handle error
returns in building g-r-o-o-a-f expressions.
2020-06-28 Iain Sandoe <iain@sandoe.co.uk>
Backported from master:
...
...
gcc/fortran/ChangeLog
View file @
11e1cfcf
2020-06-29 Harald Anlauf <anlauf@gmx.de>
Backported from master:
2020-06-28 Harald Anlauf <anlauf@gmx.de>
PR fortran/95340
* match.c (gfc_match_select_rank): Do not dereference NULL pointer.
2020-06-29 Harald Anlauf <anlauf@gmx.de>
Backported from master:
2020-06-28 Harald Anlauf <anlauf@gmx.de>
PR fortran/95880
* symbol.c (gfc_add_type): If sym->ns->proc_name is set, use it,
otherwise fall back to sym->name.
2020-06-27 Harald Anlauf <anlauf@gmx.de>
Backported from master:
...
...
gcc/po/ChangeLog
View file @
11e1cfcf
2020-06-29 Joseph Myers <joseph@codesourcery.com>
* sv.po: Update.
2020-06-22 Joseph Myers <joseph@codesourcery.com>
* sv.po: Update.
...
...
gcc/testsuite/ChangeLog
View file @
11e1cfcf
2020-06-29 Harald Anlauf <anlauf@gmx.de>
Backported from master:
2020-06-28 Harald Anlauf <anlauf@gmx.de>
PR fortran/95340
* gfortran.dg/pr95340.f90: New file.
2020-06-29 Harald Anlauf <anlauf@gmx.de>
Backported from master:
2020-06-28 Harald Anlauf <anlauf@gmx.de>
PR fortran/95880
* gfortran.dg/pr95880.f90: New file.
2020-06-29 Iain Sandoe <iain@sandoe.co.uk>
PR c++/95519
* g++.dg/coroutines/torture/pr95519-00-return_void.C: New test.
* g++.dg/coroutines/torture/pr95519-01-initial-suspend.C: New test.
* g++.dg/coroutines/torture/pr95519-02-final_suspend.C: New test.
* g++.dg/coroutines/torture/pr95519-03-return-value.C: New test.
* g++.dg/coroutines/torture/pr95519-04-yield-value.C: New test.
* g++.dg/coroutines/torture/pr95519-05-gro.C: New test.
* g++.dg/coroutines/torture/pr95519-06-grooaf.C: New test.
* g++.dg/coroutines/torture/pr95519-07-unhandled-exception.C: New test.
2020-06-29 Iain Sandoe <iain@sandoe.co.uk>
Backported from master:
2020-06-26 Iain Sandoe <iain@sandoe.co.uk>
* g++.dg/coroutines/coro1-allocators.h (BAD_GROOAF_STATIC):
New.
* g++.dg/coroutines/coro-bad-grooaf-00-static.C: New test.
2020-06-29 Jakub Jelinek <jakub@redhat.com>
Backported from master:
2020-06-09 Jakub Jelinek <jakub@redhat.com>
* g++.dg/torture/pr95493.C: Add -Wno-psabi -w to dg-additional-options.
2020-06-29 Jakub Jelinek <jakub@redhat.com>
Backported from master:
2020-06-27 Jakub Jelinek <jakub@redhat.com>
PR middle-end/95903
* c-c++-common/pr95903.c: New test.
2020-06-29 Jakub Jelinek <jakub@redhat.com>
Backported from master:
2020-06-24 Jakub Jelinek <jakub@redhat.com>
PR middle-end/95810
* gcc.dg/ubsan/pr95810.c: New test.
2020-06-28 Iain Sandoe <iain@sandoe.co.uk>
Backported from master:
...
...
libstdc++-v3/ChangeLog
View file @
11e1cfcf
2020-06-29 Ville Voutilainen <ville.voutilainen@gmail.com>
Backported from master:
2020-06-28 Ville Voutilainen <ville.voutilainen@gmail.com>
PR libstdc++/95915
* include/std/variant (_Uninitialized):
Adjust the condition and the comment.
* testsuite/20_util/variant/95915.cc: New.
* testsuite/20_util/variant/compile.cc: Add new test.
2020-06-24 Jonathan Wakely <jwakely@redhat.com>
Backported from master:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment