This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.39/master
in repository glibc.
from 837a36c371 x86: Link tst-gnu2-tls2-x86-noxsave{,c,xsavec} with libpthread
new 0da58e8be0 x86: Add seperate non-temporal tunable for memset
new cc59fa5dbc x86: Enable non-temporal memset tunable for AMD
new 38a7632f2d x86: Fix value for `x86_memset_non_temporal_threshold` when [...]
new bde201e92c x86: Disable non-temporal memset on Skylake Server
new 2be36448c4 x86: Tunables may incorrectly set Prefer_PMINUB_for_stringop [...]
new 65ae73be01 x86: Use `Avoid_Non_Temporal_Memset` to control non-temporal path
new 765ff3d0d4 x86: Optimize xstate size calculation
new 7620d98186 x86: Add ARL/PTL/CWF model detection support
new e09436c2cb x86: Handle unknown Intel processor with default tuning
new 3463100f2d x86: Detect Intel Diamond Rapids
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
manual/tunables.texi | 16 +-
sysdeps/x86/cacheinfo.h | 8 +-
sysdeps/x86/cpu-features.c | 387 +++++++++++----------
sysdeps/x86/cpu-tunables.c | 6 +
sysdeps/x86/dl-cacheinfo.h | 22 +-
sysdeps/x86/dl-diagnostics-cpu.c | 2 +
sysdeps/x86/dl-tunables.list | 3 +
.../cpu-features-preferred_feature_index_1.def | 1 +
sysdeps/x86/include/cpu-features.h | 4 +-
sysdeps/x86/sysdep.h | 6 +
sysdeps/x86/tst-hwcap-tunables.c | 4 +-
.../x86_64/multiarch/memset-vec-unaligned-erms.S | 6 +-
12 files changed, 264 insertions(+), 201 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from d45a6502d1e testcase: Add testcase for already fixed PR [PR118476]
new 3eb76b8c62a rust: Use FLOAT_TYPE_P instead of manual checking
new a2db03fdf37 rust: Use error_operand_p in rust-gcc.cc
new ec2edeffede rust: use range for inside rust-gcc.cc [PR119341]
new 9e367223ce5 rust: Add comment inside block [PR119342]
new eb5eee065b3 gccrs: typecheck: Properly select methods when dealing with [...]
new 6dcbbcd27c5 gccrs: nr2.0: Do not resolve modules this run if they are unloaded
new 09c4a7a58b4 gccrs: ast: Support outer attributes for AST::RangeExpr
new 4aa6cae27bd gccrs: ast: Add get_locus() to DelimTokenTree
new 76477f96555 gccrs: session: Desugar question mark operator after expans [...]
new cb23182fa2b gccrs: expansion: Only add fragments if the matcher succeeded
new 9710cf3e341 gccrs: expansion: Desugar doc comments into attributes befo [...]
new 5074a85e038 gccrs: format_args: Allow extraneous commas, improve safety
new 85a57bf4708 gccrs: Fix const checking of enum discriminants
new 497ed6099b2 gccrs: install.texi: Mention Rust requirement for building gccrs
new e84f76dc584 gccrs: Add `#[track_caller]` as known attribute
new 34c516efbb8 gccrs: attributes: Add missing attributes used in `core`
new 9ed95c06977 gccrs: nr2.0: Only insert derive macros if they exist
new 73d72498f97 gccrs: attributes: Handle external tool annotations like rustfmt::
new 901d94e8b4e gccrs: lang-items: Add ManuallyDrop<T>
The 19 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/doc/install.texi | 6 +
gcc/rust/Make-lang.in | 1 +
gcc/rust/ast/rust-ast.h | 1 +
gcc/rust/ast/rust-expr.h | 12 +-
gcc/rust/checks/errors/rust-const-checker.cc | 3 +
gcc/rust/expand/rust-macro-builtins-format-args.cc | 7 +
gcc/rust/expand/rust-macro-builtins.cc | 2 +-
gcc/rust/expand/rust-macro-expand.cc | 21 +-
gcc/rust/expand/rust-token-tree-desugar.cc | 72 ++++++
gcc/rust/expand/rust-token-tree-desugar.h | 55 +++++
gcc/rust/resolve/rust-ast-resolve-item.cc | 2 +
gcc/rust/resolve/rust-early-name-resolver-2.0.cc | 7 +-
.../resolve/rust-toplevel-name-resolver-2.0.cc | 12 +-
gcc/rust/rust-gcc.cc | 254 +++++++++------------
gcc/rust/rust-session-manager.cc | 2 +-
gcc/rust/typecheck/rust-hir-type-check-expr.cc | 129 +++++++++--
gcc/rust/util/rust-attribute-values.h | 27 +++
gcc/rust/util/rust-attributes.cc | 22 +-
gcc/rust/util/rust-attributes.h | 7 +-
gcc/rust/util/rust-lang-item.cc | 1 +
gcc/rust/util/rust-lang-item.h | 2 +
gcc/testsuite/rust/compile/enum_discriminant2.rs | 9 +
...sic_expansion.rs => format_args_extra_comma.rs} | 2 +-
.../rust/compile/macros/mbe/macro-issue3693.rs | 10 +
.../rust/compile/macros/mbe/macro-issue3708.rs | 80 +++++++
.../rust/compile/macros/mbe/macro-issue3709-1.rs | 10 +
.../rust/compile/macros/mbe/macro-issue3709-2.rs | 81 +++++++
.../return_function.rs => track_caller.rs} | 3 +-
.../rust/execute/torture/min_specialization2.rs | 31 +++
.../rust/execute/torture/min_specialization3.rs | 36 +++
30 files changed, 718 insertions(+), 189 deletions(-)
create mode 100644 gcc/rust/expand/rust-token-tree-desugar.cc
create mode 100644 gcc/rust/expand/rust-token-tree-desugar.h
create mode 100644 gcc/testsuite/rust/compile/enum_discriminant2.rs
copy gcc/testsuite/rust/compile/{format_args_basic_expansion.rs => format_args_ext [...]
create mode 100644 gcc/testsuite/rust/compile/macros/mbe/macro-issue3693.rs
create mode 100644 gcc/testsuite/rust/compile/macros/mbe/macro-issue3708.rs
create mode 100644 gcc/testsuite/rust/compile/macros/mbe/macro-issue3709-1.rs
create mode 100644 gcc/testsuite/rust/compile/macros/mbe/macro-issue3709-2.rs
copy gcc/testsuite/rust/compile/{torture/return_function.rs => track_caller.rs} (50%)
create mode 100644 gcc/testsuite/rust/execute/torture/min_specialization2.rs
create mode 100644 gcc/testsuite/rust/execute/torture/min_specialization3.rs
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 00966a7fdb1 c++: wrong targs in satisfaction diagnostic context line [PR99214]
new d45a6502d1e testcase: Add testcase for already fixed PR [PR118476]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/gcc.dg/torture/pr118476-1.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/torture/pr118476-1.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 6518799b2df libgcobol: Add missing float128 suffix
new 00966a7fdb1 c++: wrong targs in satisfaction diagnostic context line [PR99214]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/cp/constraint.cc | 4 +++-
gcc/testsuite/g++.dg/concepts/diagnostic20.C | 13 +++++++++++++
2 files changed, 16 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/g++.dg/concepts/diagnostic20.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from f47975106fc ld/PE: restrict non-zero default DLL characteristics to MinGW
new f844b66ad07 gdb/testsuite: Add gdb.arch/aarch64-sve-sigunwind.exp
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gdb/testsuite/gdb.arch/aarch64-sve-sigunwind.c | 205 +++++++++++++++++++++++
gdb/testsuite/gdb.arch/aarch64-sve-sigunwind.exp | 106 ++++++++++++
2 files changed, 311 insertions(+)
create mode 100644 gdb/testsuite/gdb.arch/aarch64-sve-sigunwind.c
create mode 100644 gdb/testsuite/gdb.arch/aarch64-sve-sigunwind.exp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from 1f8f322823 Fix spelling mistake "trucate" -> "truncate"
new 9df92958c1 manual/tunables: fix a trivial typo
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
manual/tunables.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from 11e188659d libio: Add test case for fflush
new 93623c03d5 manual: Update standardization of getline and getdelim [BZ #32830]
new 363bbdbd2a manual: Mention POSIX-1.2024 requires time_t to be 64 bit or wider.
new a1805753ac Fix spelling mistake "succsefully" -> "successfully"
new 1d7834cac3 Fix spelling mistake "suports" -> "supports"
new 1f8f322823 Fix spelling mistake "trucate" -> "truncate"
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
manual/stdio.texi | 26 +++++++++++++++-----------
manual/time.texi | 3 ++-
math/test-fesetexcept-traps.c | 2 +-
math/test-fexcept-traps.c | 2 +-
posix/tst-truncate-common.c | 2 +-
sysdeps/pthread/tst-stdio2.c | 2 +-
6 files changed, 21 insertions(+), 16 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 0a074b8c7e7 APX: Don't use red-zone with 32 GPRs and no caller-saved registers
new 6518799b2df libgcobol: Add missing float128 suffix
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libgcobol/libgcobol.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 6b6611f8147 ipa-cp: Use the collected pass-through types to propgate co [...]
new 0a074b8c7e7 APX: Don't use red-zone with 32 GPRs and no caller-saved registers
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/config/i386/i386.cc | 6 ++
gcc/testsuite/gcc.target/i386/pr119784a.c | 96 +++++++++++++++++++++++++++++++
gcc/testsuite/gcc.target/i386/pr119784b.c | 87 ++++++++++++++++++++++++++++
3 files changed, 189 insertions(+)
create mode 100644 gcc/testsuite/gcc.target/i386/pr119784a.c
create mode 100644 gcc/testsuite/gcc.target/i386/pr119784b.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from dd35f66287b libstdc++: Document thread-safety for COW std::string [PR21334]
new f33d2e6b532 ipa: Record and stream result types of arithemetic jump functions
new de1c734a8ae ipa-cp: Make propagation of bits in IPA-CP aware of type co [...]
new 044d0d1ee1a ipa-cp: Make dumping of widest_ints even more sane
new 4f19487f260 ipa-cp: Use the stored and streamed pass-through types in i [...]
new 6b6611f8147 ipa-cp: Use the collected pass-through types to propgate co [...]
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ipa-cp.cc | 158 ++++++++++++++++++------------------
gcc/ipa-prop.cc | 76 ++++++++++++++---
gcc/ipa-prop.h | 15 ++++
gcc/lto-streamer-out.cc | 2 +-
gcc/lto-streamer.h | 1 +
gcc/testsuite/gcc.dg/ipa/pr119318.c | 38 +++++++++
gcc/testsuite/gcc.dg/ipa/pr119530.c | 21 +++++
7 files changed, 220 insertions(+), 91 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/ipa/pr119318.c
create mode 100644 gcc/testsuite/gcc.dg/ipa/pr119530.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from e25c84752c9 gdb: add check for empty array
new 55cee09736b x86: move PadLock enumerators
new 06d32219155 bfd/COFF: propagate function size when copying/linking ELF objects
new 7c96ca45799 bfd/aout: drop add_one_symbol() hook
new 8fa7162be55 bfd/ELF/x86: avoid layering violation in link hash table en [...]
new f47975106fc ld/PE: restrict non-zero default DLL characteristics to MinGW
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
bfd/aout-target.h | 4 ----
bfd/aoutx.h | 9 +--------
bfd/coffgen.c | 18 +++++++++++++++++-
bfd/cofflink.c | 47 +++++++++++++++++++++++++++++++++++++++++++----
bfd/elfxx-x86.c | 20 +++-----------------
bfd/i386aout.c | 1 -
bfd/libaout.h | 7 -------
bfd/pdp11.c | 9 +--------
ld/emultempl/pe.em | 13 +++++++------
ld/emultempl/pep.em | 19 ++++++++++++-------
ld/ld.texi | 11 ++++++-----
opcodes/i386-gen.c | 4 ++--
opcodes/i386-init.h | 30 +++++++++++++++---------------
opcodes/i386-opc.h | 12 ++++++------
opcodes/i386-tbl.h | 16 ++++++++--------
15 files changed, 121 insertions(+), 99 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 2f334a10bce tree-optimization/119757 - reject mixed mask/non-mask ldst SLP
new dd35f66287b libstdc++: Document thread-safety for COW std::string [PR21334]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libstdc++-v3/doc/html/manual/using_concurrency.html | 10 ++++++++++
libstdc++-v3/doc/xml/manual/using.xml | 12 ++++++++++++
2 files changed, 22 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from c2f1dda34de libstdc++: Use UTF-32BE as wide encoding for big-endian mac [...]
new 2f334a10bce tree-optimization/119757 - reject mixed mask/non-mask ldst SLP
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/gcc.dg/vect/pr119757.c | 17 +++++++++++++++++
gcc/tree-vect-slp.cc | 24 ++++++++++++++++--------
2 files changed, 33 insertions(+), 8 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/vect/pr119757.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from 7b47b3dd21 libio: Synthesize ESPIPE error if lseek returns 0 after read [...]
new 11e188659d libio: Add test case for fflush
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libio/Makefile | 2 +
.../tst-nolink-libc.c => libio/tst-fflush-NULL.c | 13 +-
libio/tst-fflush-skeleton.c | 158 +++++++++++++++++++++
.../linux/tst-nolink-libc.c => libio/tst-fflush.c | 13 +-
4 files changed, 172 insertions(+), 14 deletions(-)
copy sysdeps/unix/sysv/linux/tst-nolink-libc.c => libio/tst-fflush-NULL.c (79%)
create mode 100644 libio/tst-fflush-skeleton.c
copy sysdeps/unix/sysv/linux/tst-nolink-libc.c => libio/tst-fflush.c (79%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from a48f9342114 tree-optimization/119778 - properly mark abnormal edge sour [...]
new c2f1dda34de libstdc++: Use UTF-32BE as wide encoding for big-endian mac [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libstdc++-v3/testsuite/std/format/debug.cc | 3 ++-
libstdc++-v3/testsuite/std/format/debug_nonunicode.cc | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 9e0a98a47c9 PR modula2/119779 ASM examples no longer work
new a48f9342114 tree-optimization/119778 - properly mark abnormal edge sour [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/g++.dg/torture/pr119778.C | 20 ++++++++++++++++++++
gcc/tree-inline.cc | 7 +++++--
2 files changed, 25 insertions(+), 2 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/torture/pr119778.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 29b68e449be gdb: add an assert to cmd_list_element constructor
new e25c84752c9 gdb: add check for empty array
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gdb/testsuite/gdb.base/printcmds.exp | 7 +++++++
gdb/valops.c | 3 +++
2 files changed, 10 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 5a32e85810d driver: On linux hosts disable ASLR during -freport-bug [PR119727]
new 9e0a98a47c9 PR modula2/119779 ASM examples no longer work
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/doc/gm2.texi | 8 +++---
.../gm2.dg/doc/examples/pass/doc-examples-pass.exp | 18 ++++++++++++
.../gm2.dg/doc/examples/pass/exampleadd.mod | 32 ++++++++++++++++++++++
.../gm2.dg/doc/examples/pass/exampleadd2.mod | 32 ++++++++++++++++++++++
gcc/testsuite/gm2.dg/doc/examples/pass/hello.mod | 10 +++++++
.../gm2.dg/doc/examples/pass/hellopim.mod | 10 +++++++
6 files changed, 106 insertions(+), 4 deletions(-)
create mode 100644 gcc/testsuite/gm2.dg/doc/examples/pass/doc-examples-pass.exp
create mode 100644 gcc/testsuite/gm2.dg/doc/examples/pass/exampleadd.mod
create mode 100644 gcc/testsuite/gm2.dg/doc/examples/pass/exampleadd2.mod
create mode 100644 gcc/testsuite/gm2.dg/doc/examples/pass/hello.mod
create mode 100644 gcc/testsuite/gm2.dg/doc/examples/pass/hellopim.mod
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 6ef74a3985b Automatic date update in version.in
new 29b68e449be gdb: add an assert to cmd_list_element constructor
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gdb/cli/cli-decode.h | 2 ++
1 file changed, 2 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 5c82694319a Fix implementation of Win32 thread model for C++ modules
new 5a32e85810d driver: On linux hosts disable ASLR during -freport-bug [PR119727]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/config.in | 7 +++++++
gcc/configure | 40 ++++++++++++++++++++++++++++++++++++++--
gcc/configure.ac | 15 +++++++++++++++
gcc/gcc.cc | 7 +++++++
4 files changed, 67 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from de14f1959e x86: Detect Intel Diamond Rapids
new 7b47b3dd21 libio: Synthesize ESPIPE error if lseek returns 0 after read [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libio/fileops.c | 10 ++++++
stdio-common/Makefile | 1 +
.../{tst-fflush-mmap.c => tst-fclose-devzero.c} | 40 +++++++++++-----------
3 files changed, 31 insertions(+), 20 deletions(-)
copy stdio-common/{tst-fflush-mmap.c => tst-fclose-devzero.c} (57%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-13
in repository gcc.
from 9497105d2b4 Daily bump.
new ca2b5edb990 c++: Properly fold <COND_EXPR>.*<COMPONENT> [PR114525]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/cp/typeck2.cc | 2 +-
gcc/testsuite/g++.dg/expr/cond18.C | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/g++.dg/expr/cond18.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from ec4bf5b6c22 Add testcase for PR lto/119792
new 5c82694319a Fix implementation of Win32 thread model for C++ modules
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libgcc/config/i386/gthr-win32.h | 81 +++++++++++++++++++++++------------------
1 file changed, 46 insertions(+), 35 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-14
in repository gcc.
from 11bc1e0a20d Daily bump.
new 7e79c32ac1c c++: Properly fold <COND_EXPR>.*<COMPONENT> [PR114525]
new 569f826774a Add testcase for PR lto/119792
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/cp/typeck2.cc | 2 +-
gcc/testsuite/g++.dg/expr/cond18.C | 36 ++++++++++++++++++++++++++++++++++++
gcc/testsuite/gnat.dg/lto29.adb | 9 +++++++++
gcc/testsuite/gnat.dg/lto29_pkg.ads | 15 +++++++++++++++
4 files changed, 61 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/g++.dg/expr/cond18.C
create mode 100644 gcc/testsuite/gnat.dg/lto29.adb
create mode 100644 gcc/testsuite/gnat.dg/lto29_pkg.ads
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from d72b4e9f78f Daily bump.
new ec4bf5b6c22 Add testcase for PR lto/119792
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/testsuite/gnat.dg/{lto28.adb => lto29.adb} | 6 +++---
gcc/testsuite/gnat.dg/lto29_pkg.ads | 15 +++++++++++++++
2 files changed, 18 insertions(+), 3 deletions(-)
copy gcc/testsuite/gnat.dg/{lto28.adb => lto29.adb} (62%)
create mode 100644 gcc/testsuite/gnat.dg/lto29_pkg.ads
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.