Skip to content

Commit f070681

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent 39219ec commit f070681

File tree

7 files changed

+245
-1
lines changed

7 files changed

+245
-1
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-01-29 Kwok Cheung Yeung <[email protected]>
2+
3+
* MAINTAINERS: Update my work email address.
4+
15
2024-01-25 Chung-Lin Tang <[email protected]>
26

37
* MAINTAINERS: Update my work email address.

gcc/ChangeLog

+110
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,113 @@
1+
2024-01-29 Manos Anagnostakis <[email protected]>
2+
Manolis Tsamis <[email protected]>
3+
Philipp Tomsich <[email protected]>
4+
5+
* config/aarch64/aarch64-ldpstp.md: Remove unused mode.
6+
* config/aarch64/aarch64-protos.h (aarch64_operands_ok_for_ldpstp):
7+
Likewise.
8+
* config/aarch64/aarch64.cc (aarch64_operands_ok_for_ldpstp):
9+
Call on framework moved later.
10+
11+
2024-01-29 Jose E. Marchesi <[email protected]>
12+
13+
* config/bpf/bpf.cc (bpf_expand_epilogue): Do not emit a return
14+
instruction in naked function epilogues.
15+
16+
2024-01-29 YunQiang Su <[email protected]>
17+
18+
PR target/113655
19+
* configure.ac: Fix typo gcc_cv_as_mips_explicit should be
20+
gcc_cv_as_mips_explicit_relocs.
21+
* configure: Regnerated.
22+
23+
2024-01-29 Matthieu Longo <[email protected]>
24+
25+
PR target/108933
26+
* config/arm/arm.md (arm_rev16si2): Convert to define_insn.
27+
Correct generated RTL.
28+
(arm_rev16si2_alt1): Correctly handle conditional execution.
29+
(arm_rev16si2_alt2): Likewise.
30+
31+
2024-01-29 Richard Biener <[email protected]>
32+
33+
PR middle-end/113622
34+
* expr.cc (expand_assignment): Spill hard registers if
35+
we index them with a variable offset.
36+
37+
2024-01-29 Richard Biener <[email protected]>
38+
39+
PR middle-end/113622
40+
* gimple-isel.cc (gimple_expand_vec_set_extract_expr):
41+
Also allow DECL_HARD_REGISTER variables.
42+
43+
2024-01-29 Alex Coplan <[email protected]>
44+
45+
PR target/113616
46+
* config/aarch64/aarch64-ldp-fusion.cc (fixup_debug_uses_trailing_add):
47+
Use iterate_safely when iterating over debug uses.
48+
(fixup_debug_uses): Likewise.
49+
(ldp_bb_info::cleanup_tombstones): Use iterate_safely to iterate
50+
over nondebug insns instead of manually maintaining the next insn.
51+
* iterator-utils.h (class safe_iterator): New.
52+
(iterate_safely): New.
53+
54+
2024-01-29 H.J. Lu <[email protected]>
55+
56+
PR target/38534
57+
* config/i386/i386-options.cc (ix86_set_func_type): Save
58+
callee-saved registers in noreturn functions for -O0/-Og.
59+
60+
2024-01-29 Tobias Burnus <[email protected]>
61+
62+
PR target/113615
63+
* config/gcn/gcn-valu.md (fold_left_plus_<mode>): Only
64+
define for !TARGET_RDNA2_PLUS.
65+
66+
2024-01-29 Richard Sandiford <[email protected]>
67+
68+
PR target/113281
69+
* tree-vect-patterns.cc (vect_recog_over_widening_pattern): Remove
70+
workaround for right shifts.
71+
(vect_truncatable_operation_p): Handle NEGATE_EXPR and BIT_NOT_EXPR.
72+
(vect_determine_precisions_from_range): Be more selective about
73+
which codes can be narrowed based on their input and output ranges.
74+
For shifts, require at least one more bit of precision than the
75+
maximum shift amount.
76+
77+
2024-01-29 Tobias Burnus <[email protected]>
78+
79+
* config/nvptx/nvptx.opt (march-map=): Add sm_89 and sm_90a.
80+
81+
2024-01-29 Tobias Burnus <[email protected]>
82+
83+
* doc/install.texi (amdgcn): Recommend LLVM 15+ and newlib 4.4+,
84+
but keep requiring only newlib 4.3+ and, if gfx1100 is disabled,
85+
LLVM 13.0.1+.
86+
87+
2024-01-29 Tobias Burnus <[email protected]>
88+
89+
PR other/111966
90+
* config/gcn/mkoffload.cc (SET_XNACK_UNSET, TEST_SRAM_ECC_UNSET): New.
91+
(SET_SRAM_ECC_UNSUPPORTED): Renamed to ...
92+
(SET_SRAM_ECC_UNSET): ... this.
93+
(copy_early_debug_info): Remove gfx900 special case, now handled as
94+
part of the generic handling.
95+
(main): Update SRAM_ECC and XNACK for the -march as done in gcn-hsa.h.
96+
97+
2024-01-29 Jakub Jelinek <[email protected]>
98+
99+
PR tree-optimization/110603
100+
* tree-ssa-strlen.cc (get_range_strlen_dynamic): Remove incorrect
101+
setting of pdata->maxlen to vr.upper_bound (which is unconditionally
102+
overwritten anyway). Avoid creating invalid range with minlen
103+
larger than maxlen. Formatting fix.
104+
105+
2024-01-29 Richard Biener <[email protected]>
106+
107+
PR debug/103047
108+
* tree-inline.cc (initialize_inlined_parameters): Reverse
109+
the decl chain of inlined parameters.
110+
1111
2024-01-28 Iain Sandoe <[email protected]>
2112

3113
* config/darwin.cc (darwin_build_constant_cfstring): Prevent over-

gcc/DATESTAMP

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20240129
1+
20240130

gcc/cp/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2024-01-29 Jason Merrill <[email protected]>
2+
3+
PR c++/113544
4+
* pt.cc (instantiate_class_template): Don't partially instantiate.
5+
(tsubst_stmt): Likewise.
6+
17
2024-01-26 Nathaniel Shead <[email protected]>
28

39
PR c++/113580

gcc/testsuite/ChangeLog

+114
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,117 @@
1+
2024-01-29 Alexandre Oliva <[email protected]>
2+
3+
* lib/target-supports.exp (check_effective_target_shared):
4+
Check for a static-only libc.
5+
6+
2024-01-29 Alexandre Oliva <[email protected]>
7+
8+
* c-c++-common/dfp/pr36800.c: Drop dg-do overrider.
9+
* c-c++-common/dfp/pr39034.c: Likewise.
10+
* c-c++-common/dfp/pr39035.c: Likewise.
11+
* gcc.dg/dfp/bid-non-canonical-d32-1.c: Likewise.
12+
* gcc.dg/dfp/bid-non-canonical-d32-2.c: Likewise.
13+
* gcc.dg/dfp/bid-non-canonical-d64-1.c: Likewise.
14+
* gcc.dg/dfp/bid-non-canonical-d64-2.c: Likewise.
15+
* gcc.dg/dfp/builtin-snan-1.c: Likewise.
16+
* gcc.dg/dfp/builtin-tgmath-dfp.c: Likewise.
17+
* gcc.dg/dfp/c23-float-dfp-4.c: Likewise.
18+
* gcc.dg/dfp/c23-float-dfp-5.c: Likewise.
19+
* gcc.dg/dfp/c23-float-dfp-6.c: Likewise.
20+
* gcc.dg/dfp/c23-float-dfp-7.c: Likewise.
21+
* gcc.dg/dfp/pr108068.c: Likewise.
22+
* gcc.dg/dfp/pr97439.c: Likewise.
23+
* g++.dg/compat/decimal/pass-1_main.C: Require dfprt.
24+
* g++.dg/compat/decimal/pass-2_main.C: Likewise.
25+
* g++.dg/compat/decimal/pass-3_main.C: Likewise.
26+
* g++.dg/compat/decimal/pass-4_main.C: Likewise.
27+
* g++.dg/compat/decimal/pass-5_main.C: Likewise.
28+
* g++.dg/compat/decimal/pass-6_main.C: Likewise.
29+
* g++.dg/compat/decimal/return-1_main.C: Likewise.
30+
* g++.dg/compat/decimal/return-2_main.C: Likewise.
31+
* g++.dg/compat/decimal/return-3_main.C: Likewise.
32+
* g++.dg/compat/decimal/return-4_main.C: Likewise.
33+
* g++.dg/compat/decimal/return-5_main.C: Likewise.
34+
* g++.dg/compat/decimal/return-6_main.C: Likewise.
35+
* g++.dg/eh/dfp-1.C: Likewise.
36+
* g++.dg/eh/dfp-2.C: Likewise.
37+
* g++.dg/eh/dfp-saves-aarch64.C: Likewise.
38+
* gcc.c-torture/execute/pr80692.c: Likewise.
39+
* gcc.dg/dfp/bid-non-canonical-d128-1.c: Likewise.
40+
* gcc.dg/dfp/bid-non-canonical-d128-2.c: Likewise.
41+
* gcc.dg/dfp/bid-non-canonical-d128-3.c: Likewise.
42+
* gcc.dg/dfp/bid-non-canonical-d128-4.c: Likewise.
43+
44+
2024-01-29 Jose E. Marchesi <[email protected]>
45+
46+
* gcc.target/bpf/naked-1.c: Update test to not expect an exit
47+
instruction in naked function.
48+
* gcc.target/bpf/naked-2.c: New test.
49+
50+
2024-01-29 Patrick O'Neill <[email protected]>
51+
52+
* gcc.target/riscv/rvv/vsetvl/pr113429.c: Add
53+
require-effective-target rv64 and riscv_v
54+
55+
2024-01-29 Jason Merrill <[email protected]>
56+
57+
PR c++/113544
58+
* g++.dg/cpp1y/lambda-generic-nested3.C: New test.
59+
60+
2024-01-29 Matthieu Longo <[email protected]>
61+
62+
PR target/108933
63+
* gcc.target/arm/rev16.c: Moved to...
64+
* gcc.target/arm/rev16_1.c: ...here.
65+
* gcc.target/arm/rev16_2.c: New test to check that rev16 is emitted.
66+
67+
2024-01-29 Richard Biener <[email protected]>
68+
69+
PR middle-end/113622
70+
* gcc.target/i386/pr113622-2.c: New testcase.
71+
* gcc.target/i386/pr113622-3.c: Likewise.
72+
73+
2024-01-29 Richard Biener <[email protected]>
74+
75+
PR middle-end/113622
76+
* gcc.target/i386/pr113622-1.c: New testcase.
77+
78+
2024-01-29 Alex Coplan <[email protected]>
79+
80+
PR target/113616
81+
* gcc.c-torture/compile/pr113616.c: New test.
82+
83+
2024-01-29 H.J. Lu <[email protected]>
84+
85+
PR target/38534
86+
* gcc.target/i386/pr38534-5.c: New file.
87+
* gcc.target/i386/pr38534-6.c: Likewise.
88+
89+
2024-01-29 Prathamesh Kulkarni <[email protected]>
90+
91+
PR target/112950
92+
* gcc.target/aarch64/sve/acle/general/dupq_5.c: Remove include directive
93+
and instead use #pragma GCC for including arm_sve.h.
94+
95+
2024-01-29 Richard Sandiford <[email protected]>
96+
97+
PR target/113281
98+
* gcc.dg/vect/pr113281-1.c: New test.
99+
* gcc.dg/vect/pr113281-2.c: Likewise.
100+
* gcc.dg/vect/pr113281-3.c: Likewise.
101+
* gcc.dg/vect/pr113281-4.c: Likewise.
102+
* gcc.dg/vect/pr113281-5.c: Likewise.
103+
104+
2024-01-29 Jakub Jelinek <[email protected]>
105+
106+
PR tree-optimization/110603
107+
* gcc.c-torture/compile/pr110603.c: New test.
108+
109+
2024-01-29 Andrew Pinski <[email protected]>
110+
111+
PR testsuite/109705
112+
* lib/target-supports.exp (check_effective_target_vect_long_mult):
113+
Fix powerpc*-*-* checks by considering ilp32.
114+
1115
2024-01-28 Harald Anlauf <[email protected]>
2116

3117
PR fortran/113377

libgomp/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-01-29 Tobias Burnus <[email protected]>
2+
3+
* testsuite/libgomp.c/declare-variant-4.h: Use gfx1100/gfx1030
4+
function not gfx90a for gfx1100/gfx1030 context selector.
5+
16
2024-01-26 Richard Biener <[email protected]>
27

38
* plugin/plugin-gcn.c (suitable_hsa_agent_p): Filter out

libstdc++-v3/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-01-29 François Dumont <[email protected]>
2+
3+
* doc/xml/manual/debug_mode.xml: Link against libstdc++exp.a to use
4+
_GLIBCXX_DEBUG_BACKTRACE macro.
5+
16
2024-01-24 Huanghui Nie <[email protected]>
27
Théo Papadopoulo <[email protected]>
38

0 commit comments

Comments
 (0)