GCC with patches for Dreamcast
修订版 | 31e54868cd263b5361ecb18d8e40f66932cf1ee0 (tree) |
---|---|
时间 | 2021-05-05 09:19:24 |
作者 | GCC Administrator <gccadmin@gcc....> |
Commiter | GCC Administrator |
Daily bump.
@@ -1,3 +1,86 @@ | ||
1 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
2 | + | |
3 | + Backported from master: | |
4 | + 2021-05-02 Jakub Jelinek <jakub@redhat.com> | |
5 | + | |
6 | + PR target/100375 | |
7 | + * config/nvptx/nvptx.c (nvptx_sese_pseudo): Use NULL instead of 0 | |
8 | + as first argument of pseudo_node_t constructors. | |
9 | + | |
10 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
11 | + | |
12 | + Backported from master: | |
13 | + 2021-04-29 Jakub Jelinek <jakub@redhat.com> | |
14 | + | |
15 | + PR target/100302 | |
16 | + * config/aarch64/aarch64.c (aarch64_add_offset_1_temporaries): Use | |
17 | + absu_hwi instead of abs_hwi. | |
18 | + | |
19 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
20 | + | |
21 | + Backported from master: | |
22 | + 2021-04-27 Jakub Jelinek <jakub@redhat.com> | |
23 | + | |
24 | + PR rtl-optimization/100254 | |
25 | + * cfgcleanup.c (outgoing_edges_match): Check REG_EH_REGION on | |
26 | + last1 and last2 insns rather than BB_END (bb1) and BB_END (bb2) insns. | |
27 | + | |
28 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
29 | + | |
30 | + Backported from master: | |
31 | + 2021-04-26 Jakub Jelinek <jakub@redhat.com> | |
32 | + | |
33 | + PR debug/100255 | |
34 | + * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block, | |
35 | + vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line): Remove | |
36 | + register keywords. | |
37 | + | |
38 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
39 | + | |
40 | + Backported from master: | |
41 | + 2021-04-21 Jakub Jelinek <jakub@redhat.com> | |
42 | + | |
43 | + PR rtl-optimization/100148 | |
44 | + * cprop.c (constprop_register): Use next_nondebug_insn instead of | |
45 | + NEXT_INSN. | |
46 | + | |
47 | +2021-05-04 Richard Sandiford <richard.sandiford@arm.com> | |
48 | + | |
49 | + Backported from master: | |
50 | + 2018-09-20 Richard Sandiford <richard.sandiford@arm.com> | |
51 | + | |
52 | + PR tree-optimization/86877 | |
53 | + * tree-vect-loop.c (vect_analyze_loop_2): Call | |
54 | + vect_verify_datarefs_alignment. | |
55 | + | |
56 | +2021-05-04 Richard Biener <rguenther@suse.de> | |
57 | + | |
58 | + Backported from master: | |
59 | + 2018-06-15 Richard Biener <rguenther@suse.de> | |
60 | + | |
61 | + PR middle-end/86159 | |
62 | + * tree-cfg.c (gimplify_build3): Do not strip sign conversions, | |
63 | + leave useless conversion stripping to force_gimple_operand_gsi. | |
64 | + (gimplify_build2): Likewise. | |
65 | + (gimplify_build1): Likewise. | |
66 | + | |
67 | +2021-05-04 Alexander Monakov <amonakov@ispras.ru> | |
68 | + | |
69 | + Backported from master: | |
70 | + 2019-03-01 Alexander Monakov <amonakov@ispras.ru> | |
71 | + | |
72 | + PR rtl-optimization/85899 | |
73 | + * haifa-sched.c (find_fallthru_edge_from): Relax assert to account for | |
74 | + fallthru edges leading to the exit block. | |
75 | + | |
76 | +2021-05-04 Jeff Law <law@redhat.com> | |
77 | + | |
78 | + Backported from master: | |
79 | + 2019-04-03 Jeff Law <law@redhat.com> | |
80 | + | |
81 | + PR rtl-optimization/81025 | |
82 | + * reorg.c (skip_consecutive_labels): Do not skip past a BARRIER. | |
83 | + | |
1 | 84 | 2021-04-30 James Clarke <jrtc27@jrtc27.com> |
2 | 85 | |
3 | 86 | Backported from master: |
@@ -1 +1 @@ | ||
1 | -20210504 | |
1 | +20210505 |
@@ -1,3 +1,43 @@ | ||
1 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
2 | + | |
3 | + Backported from master: | |
4 | + 2021-04-27 Jakub Jelinek <jakub@redhat.com> | |
5 | + | |
6 | + PR rtl-optimization/100254 | |
7 | + * g++.dg/opt/pr100254.C: New test. | |
8 | + | |
9 | +2021-05-04 Jakub Jelinek <jakub@redhat.com> | |
10 | + | |
11 | + Backported from master: | |
12 | + 2021-04-21 Jakub Jelinek <jakub@redhat.com> | |
13 | + | |
14 | + PR rtl-optimization/100148 | |
15 | + * g++.dg/opt/pr100148.C: New test. | |
16 | + | |
17 | +2021-05-04 Richard Sandiford <richard.sandiford@arm.com> | |
18 | + | |
19 | + Backported from master: | |
20 | + 2018-09-20 Richard Sandiford <richard.sandiford@arm.com> | |
21 | + | |
22 | + PR tree-optimization/86877 | |
23 | + * gfortran.dg/vect/vect-8-epilogue.F90: New test. | |
24 | + | |
25 | +2021-05-04 Richard Biener <rguenther@suse.de> | |
26 | + | |
27 | + Backported from master: | |
28 | + 2018-06-15 Richard Biener <rguenther@suse.de> | |
29 | + | |
30 | + PR middle-end/86159 | |
31 | + * g++.dg/pr86159.C: New testcase. | |
32 | + | |
33 | +2021-05-04 Alexander Monakov <amonakov@ispras.ru> | |
34 | + | |
35 | + Backported from master: | |
36 | + 2019-03-01 Alexander Monakov <amonakov@ispras.ru> | |
37 | + | |
38 | + PR rtl-optimization/85899 | |
39 | + * gcc.dg/pr85899.c: New test. | |
40 | + | |
1 | 41 | 2021-04-30 Jakub Jelinek <jakub@redhat.com> |
2 | 42 | |
3 | 43 | PR c++/98358 |