This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 6d1ab23dc1f Add -static-pie to GCC driver to create static PIE
new c5c63423c76 2017-09-12 Steve Ellcey <sellcey(a)cavium.com>
new 04c83f14864 Don't warn function alignment if warn_if_not_aligned_p is true
new f47edbb5612 Add DW_CFA_AARCH64_negate_ra_state to dwarf2.def/h and dwar [...]
The 3 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/c-family/ChangeLog | 5 +++++
gcc/c-family/c-attribs.c | 5 ++++-
include/ChangeLog | 5 +++++
include/dwarf2.def | 1 +
include/dwarf2.h | 2 ++
libbacktrace/ChangeLog | 6 ++++++
libbacktrace/Makefile.in | 2 +-
libiberty/ChangeLog | 4 ++++
libiberty/dwarfnames.c | 2 ++
9 files changed, 30 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 llvm.
from b24dbf12cd3 Revert r313009 "[ARM] Use ADDCARRY / SUBCARRY"
new 26911223020 [LV] Clamp the VF to the trip count
new 1e4d46b3a5f [DWARF] Incorrect prologue end line record.
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:
lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 +-
lib/Transforms/Vectorize/LoopVectorize.cpp | 19 +++--
test/DebugInfo/X86/invalid-prologue-end.ll | 91 ++++++++++++++++++++++
.../LoopVectorize/X86/vector_max_bandwidth.ll | 26 +++++++
4 files changed, 132 insertions(+), 8 deletions(-)
create mode 100644 test/DebugInfo/X86/invalid-prologue-end.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 lld.
from 8291f7f2a [MIPS] Check raw binary file content instead of disassembled [...]
new 6855709f3 Simplify MinGW test.
new 28deafe83 Simplify handling of predefined symbols.
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/Writer.cpp | 117 +++++++++++++------------------
test/MinGW/Inputs/imagebase-aarch64.yaml | 47 -------------
test/MinGW/Inputs/imagebase-arm.yaml | 47 -------------
test/MinGW/Inputs/imagebase-i386.yaml | 47 -------------
test/MinGW/Inputs/imagebase-x86_64.yaml | 47 -------------
test/MinGW/driver.s | 60 ----------------
test/MinGW/driver.test | 46 ++++++++++++
test/MinGW/lto-debug-pass-arguments.ll | 16 -----
8 files changed, 95 insertions(+), 332 deletions(-)
delete mode 100644 test/MinGW/Inputs/imagebase-aarch64.yaml
delete mode 100644 test/MinGW/Inputs/imagebase-arm.yaml
delete mode 100644 test/MinGW/Inputs/imagebase-i386.yaml
delete mode 100644 test/MinGW/Inputs/imagebase-x86_64.yaml
delete mode 100644 test/MinGW/driver.s
create mode 100644 test/MinGW/driver.test
delete mode 100644 test/MinGW/lto-debug-pass-arguments.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 gcc.
from 8b917cedb32 PR target/80204 * config/darwin-driver.c (darwin_find_ver [...]
new ca76ee4f29e Remove '*' from movsi/di/ti patterns
new 6d1ab23dc1f Add -static-pie to GCC driver to create static PIE
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 | 46 ++++++++++++++++++++++++++++++++++---------
gcc/common.opt | 13 +++++++++---
gcc/config/aarch64/aarch64.md | 12 +++++------
gcc/config/gnu-user.h | 15 +++++++-------
gcc/config/i386/gnu-user.h | 7 ++++---
gcc/config/i386/gnu-user64.h | 11 ++++++-----
gcc/doc/invoke.texi | 24 +++++++++++++++-------
gcc/gcc.c | 20 +++++++++++--------
8 files changed, 100 insertions(+), 48 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 4b06c246 [clangd] Add support for snippet completions
new 3c4e96a0 [clang-tidy] Implement type-based check for `gsl::owner`
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/cppcoreguidelines/CMakeLists.txt | 1 +
.../CppCoreGuidelinesTidyModule.cpp | 3 +
clang-tidy/cppcoreguidelines/OwningMemoryCheck.cpp | 315 +++++++++++++++++
clang-tidy/cppcoreguidelines/OwningMemoryCheck.h | 44 +++
clang-tidy/utils/Matchers.h | 4 +
docs/ReleaseNotes.rst | 5 +
.../checks/cppcoreguidelines-owning-memory.rst | 143 ++++++++
docs/clang-tidy/checks/list.rst | 1 +
.../clang-tidy/cppcoreguidelines-owning-memory.cpp | 388 +++++++++++++++++++++
9 files changed, 904 insertions(+)
create mode 100644 clang-tidy/cppcoreguidelines/OwningMemoryCheck.cpp
create mode 100644 clang-tidy/cppcoreguidelines/OwningMemoryCheck.h
create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-owning-memory.rst
create mode 100644 test/clang-tidy/cppcoreguidelines-owning-memory.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 llvm.
from fb7fead2f10 [SLP] Test with mutiple uses of conditional op and wrong parent.
new b24dbf12cd3 Revert r313009 "[ARM] Use ADDCARRY / SUBCARRY"
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/ARMISelLowering.cpp | 185 ++++----------------------------
lib/Target/ARM/ARMISelLowering.h | 3 +-
test/CodeGen/ARM/intrinsics-overflow.ll | 88 +++------------
test/CodeGen/ARM/pr34045.ll | 53 ---------
4 files changed, 35 insertions(+), 294 deletions(-)
delete mode 100644 test/CodeGen/ARM/pr34045.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 llvm.
from 0eb37abad24 [X86][AVX2] Add gather/movntdqa/pmaskmov/pmovmskb/pslldq/ps [...]
new 91a879b291b Statically assert that enum items don't overflow storage.
new fb7fead2f10 [SLP] Test with mutiple uses of conditional op and wrong parent.
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:
include/llvm/DebugInfo/DIContext.h | 6 +-
.../SLPVectorizer/X86/horizontal-minmax.ll | 1972 +++++++++++++++++---
2 files changed, 1705 insertions(+), 273 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 lld.
from 7acfd67d3 [MIPS] Initial support of microMIPS code linking
new 8291f7f2a [MIPS] Check raw binary file content instead of disassembled [...]
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/ELF/mips-micro-relocs.s | 60 +++++++++++++++++++++++++++-----------------
1 file changed, 37 insertions(+), 23 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 84400901774 Remove ancient, commented out code from TableGen, NFC
new 0eb37abad24 [X86][AVX2] Add gather/movntdqa/pmaskmov/pmovmskb/pslldq/ps [...]
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/CodeGen/X86/avx2-schedule.ll | 651 ++++++++++++++++++++++++++++++++++++++
1 file changed, 651 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.