This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 4c8a1216caf Daily bump.
new 3be33b09fb8 * elf.c (backtrace_initialize): Always set *fileline_fn. [...]
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:
libbacktrace/ChangeLog | 16 +++
libbacktrace/Makefile.am | 14 +-
libbacktrace/Makefile.in | 49 ++++++-
libbacktrace/btest.c | 267 ++---------------------------------
libbacktrace/configure | 47 +++++-
libbacktrace/configure.ac | 17 +++
libbacktrace/edtest.c | 147 +------------------
libbacktrace/elf.c | 14 +-
libbacktrace/{edtest.c => testlib.c} | 208 ++++++++++++---------------
libbacktrace/testlib.h | 110 +++++++++++++++
libbacktrace/ttest.c | 161 +++++++++++++++++++++
11 files changed, 510 insertions(+), 540 deletions(-)
copy libbacktrace/{edtest.c => testlib.c} (56%)
create mode 100644 libbacktrace/testlib.h
create mode 100644 libbacktrace/ttest.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 llvm.
from c034fe3bb56 Initialize SubArch in class Triple
new eb2b31dd7a0 Address http://bugs.llvm.org/pr32207 by making BannerPrinte [...]
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:
lib/Analysis/CallGraphSCCPass.cpp | 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 llvm.
from 108ba469427 [x86] use vperm2f128 rather than vinsertf128 when there's a [...]
new c034fe3bb56 Initialize SubArch in class Triple
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:
include/llvm/ADT/Triple.h | 4 +++-
1 file changed, 3 insertions(+), 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 gcc-7-branch
in repository gcc.
from 57fcb8118cf Daily bump.
new 6ba6a94d7fa Daily bump.
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/DATESTAMP | 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 5759d97e61a Disable constant pool for nvptx
new 4c8a1216caf Daily bump.
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/DATESTAMP | 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 gcc-6-branch
in repository gcc.
from dc098d7e882 Daily bump.
new a9dbf341dae Daily bump.
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/DATESTAMP | 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 gcc-5-branch
in repository gcc.
from 82e6d22ae84 Daily bump.
new 8f89653fd3d Daily bump.
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/DATESTAMP | 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 lld.
from fb59e64c6 Move clearOutputSections before createPhdrs. NFC.
new 10b95e1b9 ELF: Move section merging before ICF. NFCI.
new 9e02b7abd ELF: Teach ICF about relocations referring to merge input sections.
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:
ELF/Driver.cpp | 24 ++++----
ELF/ICF.cpp | 84 ++++++++++++++++++++--------
ELF/SyntheticSections.cpp | 63 +++++++++++++++++++--
ELF/SyntheticSections.h | 2 +-
ELF/Writer.cpp | 44 ---------------
test/ELF/Inputs/icf-merge-sec.s | 9 +++
test/ELF/Inputs/icf-merge.s | 10 ++++
test/ELF/Inputs/icf-merge2.s | 10 ++++
test/ELF/Inputs/icf-merge3.s | 10 ++++
test/ELF/{icf-absolute.s => icf-merge-sec.s} | 18 +++---
test/ELF/icf-merge.s | 27 +++++++++
11 files changed, 204 insertions(+), 97 deletions(-)
create mode 100644 test/ELF/Inputs/icf-merge-sec.s
create mode 100644 test/ELF/Inputs/icf-merge.s
create mode 100644 test/ELF/Inputs/icf-merge2.s
create mode 100644 test/ELF/Inputs/icf-merge3.s
copy test/ELF/{icf-absolute.s => icf-merge-sec.s} (62%)
create mode 100644 test/ELF/icf-merge.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 binutils-gdb.
from c4dcb155c4 Introduce "set debug separate-debug-file"
new fd0219988d Automatic date update in version.in
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/version.h | 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 gdb-8.0-branch
in repository binutils-gdb.
from 020ac66395 Automatic date update in version.in
new d7406e1ecd Automatic date update in version.in
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/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.