This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from ceb7e9d PR c++/71747 - ICE with self-referential partial spec
new a15c974 Use static_assert for STATIC_ASSERT for C++11 onwards
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/ChangeLog | 5 +++++
gcc/system.h | 7 ++++++-
2 files changed, 11 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 master
in repository llvm.
from f15a020 [GlobalISel] Introduce an instruction selector.
new a772715 [ARM] Check that the thumb COFF segment flag gets set on thum [...]
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:
test/MC/ARM/Windows/thumb-attributes.s | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 test/MC/ARM/Windows/thumb-attributes.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 61d2d2b Restrict linker garbage collection personality test to cfi en [...]
new db18dba Begin implementing ARC NPS-400 Accelerator instructions
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 | 18 ++++
gas/config/tc-arc.c | 152 +++++++++++++++++++++++-------
gas/testsuite/gas/arc/nps400-8.d | 71 ++++++++++++++
gas/testsuite/gas/arc/nps400-8.s | 92 +++++++++++++++++++
include/ChangeLog | 8 ++
include/opcode/arc.h | 194 +++++++++++++++++++++++++++------------
opcodes/ChangeLog | 19 ++++
opcodes/arc-dis.c | 45 ++++++++-
opcodes/arc-ext.c | 10 +-
opcodes/arc-nps400-tbl.h | 110 ++++++++++++++++++++--
opcodes/arc-opc.c | 131 +++++++++++++++++++++++---
11 files changed, 724 insertions(+), 126 deletions(-)
create mode 100644 gas/testsuite/gas/arc/nps400-8.d
create mode 100644 gas/testsuite/gas/arc/nps400-8.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 compiler-rt.
from 8f6f382 Revert "Default COMPILER_RT_BUILD_XRAY=ON"
new e6d3245 tsan: don't deliver signals when they are blocked
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/tsan/rtl/tsan_interceptors.cc | 41 ++++++++++++++++++++------
test/tsan/signal_block.cc | 60 +++++++++++++++++++++++++++++++++++++++
2 files changed, 92 insertions(+), 9 deletions(-)
create mode 100644 test/tsan/signal_block.cc
--
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 1f35f2f [mips][ias] Check '$rs = $rd' constraints when both registers [...]
new 60367c5 GlobalISel: remove variable_ops from output list.
new 8968942 [AArch64] Define AArch64RegisterInfo as a class, not a struct. NFC.
new cd0d4b0 [AArch64] Mark various *Info classes as 'final'. NFC.
new f15a020 [GlobalISel] Introduce an instruction selector.
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:
include/llvm/CodeGen/GlobalISel/GISelAccessor.h | 4 +
.../llvm/CodeGen/GlobalISel/InstructionSelect.h | 39 +++++
.../llvm/CodeGen/GlobalISel/InstructionSelector.h | 63 ++++++++
include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h | 9 ++
include/llvm/CodeGen/MachineRegisterInfo.h | 4 +
include/llvm/CodeGen/TargetPassConfig.h | 10 ++
include/llvm/InitializePasses.h | 1 +
include/llvm/Target/GenericOpcodes.td | 2 +-
include/llvm/Target/TargetSubtargetInfo.h | 10 ++
lib/CodeGen/GlobalISel/CMakeLists.txt | 2 +
lib/CodeGen/GlobalISel/GlobalISel.cpp | 1 +
lib/CodeGen/GlobalISel/InstructionSelect.cpp | 99 +++++++++++++
lib/CodeGen/GlobalISel/InstructionSelector.cpp | 52 +++++++
lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 19 +++
lib/CodeGen/LLVMTargetMachine.cpp | 5 +
lib/CodeGen/MachineRegisterInfo.cpp | 14 ++
lib/Target/AArch64/AArch64InstrInfo.h | 2 +-
lib/Target/AArch64/AArch64InstructionSelector.cpp | 162 +++++++++++++++++++++
lib/Target/AArch64/AArch64InstructionSelector.h | 39 +++++
lib/Target/AArch64/AArch64MachineFunctionInfo.h | 2 +-
lib/Target/AArch64/AArch64RegisterBankInfo.h | 2 +-
lib/Target/AArch64/AArch64RegisterInfo.h | 3 +-
lib/Target/AArch64/AArch64Subtarget.cpp | 5 +
lib/Target/AArch64/AArch64Subtarget.h | 3 +-
lib/Target/AArch64/AArch64TargetMachine.cpp | 22 ++-
lib/Target/AArch64/CMakeLists.txt | 1 +
lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 5 +
.../AArch64/GlobalISel/arm64-instructionselect.mir | 118 +++++++++++++++
28 files changed, 689 insertions(+), 9 deletions(-)
create mode 100644 include/llvm/CodeGen/GlobalISel/InstructionSelect.h
create mode 100644 include/llvm/CodeGen/GlobalISel/InstructionSelector.h
create mode 100644 lib/CodeGen/GlobalISel/InstructionSelect.cpp
create mode 100644 lib/CodeGen/GlobalISel/InstructionSelector.cpp
create mode 100644 lib/Target/AArch64/AArch64InstructionSelector.cpp
create mode 100644 lib/Target/AArch64/AArch64InstructionSelector.h
create mode 100644 test/CodeGen/AArch64/GlobalISel/arm64-instructionselect.mir
--
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 d282356 change Vim key binding for include-fixer and clang-rename
new ba45693 fix typo in clang-rename and clang-tidy docs
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:
docs/clang-rename.rst | 2 +-
docs/include-fixer.rst | 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 262a83d 2016-07-27 Richard Biener <rguenther(a)suse.de>
new ceb7e9d PR c++/71747 - ICE with self-referential partial spec
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/ChangeLog | 8 +++
gcc/cp/pt.c | 65 ++++++++++---------------
gcc/testsuite/g++.dg/cpp0x/initlist-template2.C | 23 +++++++++
gcc/testsuite/g++.dg/template/pr55843.C | 9 ++--
4 files changed, 61 insertions(+), 44 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-template2.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 clang-tools-extra.
from 11402a1 [clang-rename] skip CXXConversionDecl while searching for NamedDecl
new d282356 change Vim key binding for include-fixer and clang-rename
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-rename/tool/clang-rename.py | 6 +++---
docs/clang-rename.rst | 9 ++++++---
docs/include-fixer.rst | 12 ++++++++----
include-fixer/tool/clang-include-fixer.py | 6 +++---
4 files changed, 20 insertions(+), 13 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.
from ed9b826 Revert r276856 "Adjust Registry interface to not require plug [...]
new 3f38d95 [ARM] Pass thumb as architecture to the underlying tools, whe [...]
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/Driver/ToolChain.cpp | 4 +++-
test/Driver/windows-thumb.s | 2 ++
2 files changed, 5 insertions(+), 1 deletion(-)
create mode 100644 test/Driver/windows-thumb.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 lld.
from 163df97 [ELF] Support --output. Also output= can take two dashes.
new 8d94c66 Make toPhdrFlags a member function. NFC.
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/LinkerScript.cpp | 8 ++++----
ELF/OutputSections.cpp | 10 ++++++++++
ELF/OutputSections.h | 1 +
ELF/Writer.cpp | 18 ++++--------------
ELF/Writer.h | 1 -
5 files changed, 19 insertions(+), 19 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.