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 dce0844 Stop the ARC disassembler from seg-faulting if initialised wi [...]
new 32348c5 [ARC] Fix parsing dtpoff relocation expression.
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:
gas/ChangeLog | 7 +++++++
gas/config/tc-arc.c | 2 +-
gas/testsuite/gas/arc/tls-relocs2.d | 10 ++++++++++
gas/testsuite/gas/arc/tls-relocs2.s | 12 ++++++++++++
ld/ChangeLog | 8 ++++++++
ld/testsuite/ld-arc/arc.exp | 5 +++++
ld/testsuite/ld-arc/tls-dtpoff.dd | 11 +++++++++++
ld/testsuite/ld-arc/tls-dtpoff.rd | 4 ++++
ld/testsuite/ld-arc/tls-dtpoff.s | 12 ++++++++++++
ld/testsuite/ld-arc/tls-relocs.ld | 20 ++++++++++++++++++++
10 files changed, 90 insertions(+), 1 deletion(-)
create mode 100644 gas/testsuite/gas/arc/tls-relocs2.d
create mode 100644 gas/testsuite/gas/arc/tls-relocs2.s
create mode 100644 ld/testsuite/ld-arc/tls-dtpoff.dd
create mode 100644 ld/testsuite/ld-arc/tls-dtpoff.rd
create mode 100644 ld/testsuite/ld-arc/tls-dtpoff.s
create mode 100644 ld/testsuite/ld-arc/tls-relocs.ld
--
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 55ae1f2 Fix TARGET_LRA_P description
new 0029200 2016-09-13 Jim MacArthur <jim.macarthur(a)codethink.co.uk>
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/ChangeLog | 4 ++++
gcc/testsuite/gfortran.dg/dec_structure_14.f90 | 18 ++++++++++++++++++
2 files changed, 22 insertions(+)
create mode 100644 gcc/testsuite/gfortran.dg/dec_structure_14.f90
--
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 8b02e1f [ELF] Replace HasContents with HasSections. NFC
new 0f065a2 Use murmurhash2 instead of fnv.
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:
ELF/Config.h | 2 +-
ELF/Driver.cpp | 2 +-
ELF/OutputSections.cpp | 65 +++++++++++++++++++++++++++++++++++++++++---------
ELF/OutputSections.h | 5 ++--
ELF/Writer.cpp | 4 ++--
5 files changed, 61 insertions(+), 17 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 29063f8 Add support for disabling automatic generation of .eh_frame_h [...]
new dce0844 Stop the ARC disassembler from seg-faulting if initialised wi [...]
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:
opcodes/ChangeLog | 4 ++++
opcodes/arc-dis.c | 11 ++++++++---
2 files changed, 12 insertions(+), 3 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 2ebea89 Change the default of TARGET_LRA_P to true
new 0f07909 Delete TARGET_LRA_P from those targets that set it to "true"
new 55ae1f2 Fix TARGET_LRA_P description
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/ChangeLog | 13 +++++++++++++
gcc/config/aarch64/aarch64.c | 3 ---
gcc/config/arm/arm.c | 3 ---
gcc/config/i386/i386.c | 3 ---
gcc/config/nds32/nds32.c | 3 ---
gcc/doc/tm.texi | 2 +-
gcc/target.def | 4 ++--
7 files changed, 16 insertions(+), 15 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 clang-tools-extra.
from 5f188a7 [clang-tidy] Fix naming in container-size-empty.
new 5434827 [clang-tidy] Add check 'misc-use-after-move'
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:
clang-tidy/misc/CMakeLists.txt | 1 +
clang-tidy/misc/MiscTidyModule.cpp | 2 +
clang-tidy/misc/UseAfterMoveCheck.cpp | 643 +++++++++++++++
clang-tidy/misc/UseAfterMoveCheck.h | 36 +
docs/ReleaseNotes.rst | 6 +
docs/clang-tidy/checks/list.rst | 1 +
docs/clang-tidy/checks/misc-use-after-move.rst | 197 +++++
test/clang-tidy/misc-use-after-move.cpp | 1039 ++++++++++++++++++++++++
8 files changed, 1925 insertions(+)
create mode 100644 clang-tidy/misc/UseAfterMoveCheck.cpp
create mode 100644 clang-tidy/misc/UseAfterMoveCheck.h
create mode 100644 docs/clang-tidy/checks/misc-use-after-move.rst
create mode 100644 test/clang-tidy/misc-use-after-move.cpp
--
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 clang.
from 3e4a6ab Document option '-rtlib' in clang's man page and help info
new b19f8fa Revert "[modules] When merging one definition into another, p [...]
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/clang/AST/ASTContext.h | 15 +-----
lib/AST/ASTContext.cpp | 63 ++--------------------
lib/Serialization/ASTReader.cpp | 19 +++++--
.../Inputs/merge-template-pattern-visibility/a.h | 4 --
.../Inputs/merge-template-pattern-visibility/b.h | 2 -
.../Inputs/merge-template-pattern-visibility/c.h | 2 -
test/Modules/merge-template-pattern-visibility.cpp | 3 --
7 files changed, 22 insertions(+), 86 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 76c5395 Missing includes.
new 9502e5b Revert "[Thumb] Teach ISel how to lower compares of AND bitma [...]
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/Target/ARM/ARMBaseInstrInfo.cpp | 6 +-
lib/Target/ARM/ARMISelDAGToDAG.cpp | 137 +-------------------------
test/CodeGen/ARM/and-cmpz.ll | 71 -------------
test/CodeGen/ARM/arm-and-tst-peephole.ll | 15 +--
test/CodeGen/ARM/arm-shrink-wrapping.ll | 4 +-
test/CodeGen/ARM/call-tc.ll | 2 +-
test/CodeGen/ARM/debug-info-branch-folding.ll | 2 +-
test/CodeGen/Thumb/thumb-shrink-wrapping.ll | 8 +-
test/CodeGen/Thumb2/float-ops.ll | 12 +--
9 files changed, 26 insertions(+), 231 deletions(-)
delete mode 100644 test/CodeGen/ARM/and-cmpz.ll
--
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 d68ff01 Automatic date update in version.in
new 29063f8 Add support for disabling automatic generation of .eh_frame_h [...]
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:
ld/ChangeLog | 10 ++++++++++
ld/NEWS | 3 +++
ld/emultempl/elf32.em | 27 ++++++++++++++++++---------
ld/ld.texinfo | 7 +++++--
ld/lexsup.c | 2 ++
5 files changed, 38 insertions(+), 11 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.