This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from b12d834aab3 testsuite: Add testcase for already fixed PR [PR120322]
new 26ffb945638 Fix testsuite fallout of VF == 1 epilogue vectorization change
new eb41f97db7d Fix x86 testsuite fallout from VF == 1 epilogue vectorizati [...]
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/testsuite/gcc.dg/vect/complex/fast-math-complex-add-half-float.c | 2 +-
gcc/testsuite/gcc.dg/vect/fast-math-slp-38.c | 2 +-
2 files changed, 2 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 c731d295897 [Autofdo] Add hierarchical discriminator for loop unrolling
new b12d834aab3 testsuite: Add testcase for already fixed PR [PR120322]
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/pr120322.c | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/torture/pr120322.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 releases/gcc-14
in repository gcc.
from eeb324bc17f Daily bump.
new b4fedc3f7c6 LoongArch: Fix ICE when explicit-relocs is none
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/loongarch/loongarch.md | 2 +-
gcc/testsuite/gcc.target/loongarch/{attr-model-5.c => attr-model-6.c} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
copy gcc/testsuite/gcc.target/loongarch/{attr-model-5.c => attr-model-6.c} (80%)
--
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 d9001d36830 MIPS/BFD: Initialize `error_message' in `_bfd_mips_elf_orph [...]
new 44c39324673 RISC-V: Add second-pass relaxation for JAL to C.J/C.JAL
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:
bfd/elfnn-riscv.c | 130 +++++++++++++++++++++++++----
bfd/elfxx-riscv.c | 3 +
include/elf/riscv.h | 13 +--
ld/testsuite/ld-riscv-elf/j-to-cj-32.d | 33 ++++++++
ld/testsuite/ld-riscv-elf/j-to-cj-64.d | 34 ++++++++
ld/testsuite/ld-riscv-elf/j-to-cj.s | 59 +++++++++++++
ld/testsuite/ld-riscv-elf/jal-to-cjal.d | 34 ++++++++
ld/testsuite/ld-riscv-elf/jal-to-cjal.s | 59 +++++++++++++
ld/testsuite/ld-riscv-elf/ld-riscv-elf.exp | 3 +
9 files changed, 344 insertions(+), 24 deletions(-)
create mode 100644 ld/testsuite/ld-riscv-elf/j-to-cj-32.d
create mode 100644 ld/testsuite/ld-riscv-elf/j-to-cj-64.d
create mode 100644 ld/testsuite/ld-riscv-elf/j-to-cj.s
create mode 100644 ld/testsuite/ld-riscv-elf/jal-to-cjal.d
create mode 100644 ld/testsuite/ld-riscv-elf/jal-to-cjal.s
--
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 a0ee159bb58 LoongArch: Fix ICE when explicit-relocs is none
new 49dec4fef16 [Autofdo] Add hierarchical discriminator support
new b3d6786029c [AutoFDO] Add hierarchical discriminator for vectorizer
new 7bb5f632a12 [AutoFDO] Add hierarchical discriminator for loop versioning
new c731d295897 [Autofdo] Add hierarchical discriminator for loop unrolling
The 4 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/Makefile.in | 1 +
gcc/cfgloopmanip.cc | 78 ++++++
gcc/cfgloopmanip.h | 4 +
gcc/function.h | 5 +
gcc/gimple-loop-versioning.cc | 20 ++
gcc/hierarchical_discriminator.cc | 264 +++++++++++++++++++++
gcc/hierarchical_discriminator.h | 93 ++++++++
gcc/input.cc | 29 +++
gcc/input.h | 43 ++++
.../hierarchical-discriminator-loop-version.c | 28 +++
.../gcc.dg/hierarchical-discriminator-unroll.c | 37 +++
.../hierarchical-discriminator-vect-version.c | 17 ++
gcc/tree-ssa-loop-ivcanon.cc | 7 +-
gcc/tree-vect-loop-manip.cc | 39 +++
gcc/tree-vect-loop.cc | 18 ++
15 files changed, 681 insertions(+), 2 deletions(-)
create mode 100644 gcc/hierarchical_discriminator.cc
create mode 100644 gcc/hierarchical_discriminator.h
create mode 100644 gcc/testsuite/gcc.dg/hierarchical-discriminator-loop-version.c
create mode 100644 gcc/testsuite/gcc.dg/hierarchical-discriminator-unroll.c
create mode 100644 gcc/testsuite/gcc.dg/hierarchical-discriminator-vect-version.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 releases/gcc-15
in repository gcc.
from 18770404b58 Daily bump.
new e5472188ab3 LoongArch: Fix ICE when explicit-relocs is none
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/loongarch/loongarch.md | 2 +-
gcc/testsuite/gcc.target/loongarch/{attr-model-5.c => attr-model-6.c} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
copy gcc/testsuite/gcc.target/loongarch/{attr-model-5.c => attr-model-6.c} (80%)
--
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 a9d1b2f8b05 a68: fix documentation of lseek in manual
new a0ee159bb58 LoongArch: Fix ICE when explicit-relocs is none
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/loongarch/loongarch.md | 2 +-
.../gcc.target/loongarch/la64/{attr-model-5.c => attr-model-6.c} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
copy gcc/testsuite/gcc.target/loongarch/la64/{attr-model-5.c => attr-model-6.c} (80%)
--
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 109fae9d4df Daily bump.
new 5e0f8276117 a68: fix documentation of -f[no-]brackets
new a9d1b2f8b05 a68: fix documentation of lseek in manual
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/algol68/ga68.texi | 8 ++++----
1 file changed, 4 insertions(+), 4 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 binutils-gdb.
from d164340772c Automatic date update in version.in
new d9001d36830 MIPS/BFD: Initialize `error_message' in `_bfd_mips_elf_orph [...]
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:
bfd/elfxx-mips.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.