This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from 06787e3d57 [ASTImporter] import macro source locations
new d29eb3a6ff [analyzer][ctu] fix unsortable diagnostics
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/StaticAnalyzer/Core/PathDiagnostic.cpp | 10 +++++++---
test/Analysis/Inputs/ctu-other.cpp | 7 +++++++
test/Analysis/Inputs/externalFnMap.txt | 1 +
test/Analysis/ctu-hdr.h | 3 +++
test/Analysis/ctu-main.cpp | 7 +++++++
5 files changed, 25 insertions(+), 3 deletions(-)
create mode 100644 test/Analysis/ctu-hdr.h
--
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 0aae9148178 NFC - Various typo fixes in tests
new 6c03d59fdb6 [X86][SSE] Add SSE2 target to some shift tests
new 5a15e424fb4 [AArch64][SVE] Asm: Support for reversed subtract (SUBR) in [...]
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/Target/AArch64/AArch64SVEInstrInfo.td | 6 +-
test/CodeGen/X86/combine-shl.ll | 555 ++++++++++++++++-----
test/CodeGen/X86/vec_shift6.ll | 257 ++++++----
test/CodeGen/X86/widen_arith-4.ll | 101 ++--
.../SVE/{sub-diagnostics.s => subr-diagnostics.s} | 106 ++--
test/MC/AArch64/SVE/subr.s | 117 +++++
6 files changed, 809 insertions(+), 333 deletions(-)
copy test/MC/AArch64/SVE/{sub-diagnostics.s => subr-diagnostics.s} (67%)
create mode 100644 test/MC/AArch64/SVE/subr.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 lldb.
from a15523683 Ammend "Fix MSVC2015 compilation failure after r336206 patch".
new 7eab5cd2e [CMake] Move some variables around
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:
CMakeLists.txt | 12 +++++++++++-
test/CMakeLists.txt | 4 ++--
2 files changed, 13 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 lld.
from dcbc8544a [ELF] - LTO: add test for createEmptyIndex.
new 97a138473 [ELF] - Cover handling of DW_AT_external with test.
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/conflict-debug-variable.s | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 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 c111c1fc19b Remove spurious $HOME include from BRIG FE Makefile
new 62cc34174e3 PR libstdc++/84087 add default arguments to basic_string me [...]
new 1207a6ed36c PR libstdc++/83982 fix exception-safety guarantee of std::v [...]
new 3811e12cc0e PR libstdc++/85671 allow copy elision in path concatenation
new 2383b8137d4 PR libstdc++/85098 add missing definitions for static constants
new a5a159ded16 PR target/85904 check for aligned_alloc on netbsd cross-com [...]
new b7a0c287979 Add workaround to std::variant for Clang bug 31852
new 900dcfff041 Add another workaround to std::variant for Clang bug 31852
new a840b448cff Qualify std::__invoke in <variant> to prevent ADL
new 46e34c485a6 Qualify another call in <variant>
new 777cf552016 PR libstdc++/86127 avoid unnecessary allocator conversions
new 0d61ad319df LWG 3050 Fix cv-qualification of convertibility constraints
new 4926c67b043 Use non-throwing is_directory in filesystem::create_directory
The 12 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:
libstdc++-v3/ChangeLog | 113 +++++++++++++++++++++
libstdc++-v3/configure | 13 +++
libstdc++-v3/crossconfig.m4 | 1 +
libstdc++-v3/include/bits/basic_string.h | 20 ++--
libstdc++-v3/include/bits/forward_list.h | 11 +-
libstdc++-v3/include/bits/forward_list.tcc | 8 +-
libstdc++-v3/include/bits/regex.h | 42 ++++++++
libstdc++-v3/include/bits/regex_automaton.h | 2 +-
libstdc++-v3/include/bits/vector.tcc | 24 ++---
libstdc++-v3/include/experimental/bits/fs_path.h | 6 +-
libstdc++-v3/include/std/chrono | 10 +-
libstdc++-v3/include/std/variant | 30 ++++--
libstdc++-v3/src/filesystem/ops.cc | 4 +-
.../20_util/duration/cons/{54025.cc => dr3050.cc} | 12 +--
.../duration/literals/{range.cc => range_neg.cc} | 2 +-
.../83833.cc => 21_strings/basic_string/dr2268.cc} | 23 +++--
.../vector/capacity/resize/strong_guarantee.cc} | 42 +++++---
.../basic_regex/85098.cc} | 29 +++---
18 files changed, 300 insertions(+), 92 deletions(-)
copy libstdc++-v3/testsuite/20_util/duration/cons/{54025.cc => dr3050.cc} (79%)
rename libstdc++-v3/testsuite/20_util/duration/literals/{range.cc => range_neg.cc} (94%)
copy libstdc++-v3/testsuite/{26_numerics/random/chi_squared_distribution/83833.cc [...]
copy libstdc++-v3/testsuite/{18_support/aligned_alloc/aligned_alloc.cc => 23_conta [...]
copy libstdc++-v3/testsuite/{18_support/aligned_alloc/aligned_alloc.cc => 28_regex [...]
--
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 binutils-2_31-branch
in repository binutils-gdb.
from 8d8c8344ce Also install diagnostics.h
new b6a63da464 ld: Properly display default for -z separate-code
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 | 6 ++++++
ld/lexsup.c | 7 +++++++
2 files changed, 13 insertions(+)
--
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 binutils-2_30-branch
in repository binutils-gdb.
from 6bb75436cd Fix parens in ld bootstrap.exp
new ea2a7e63aa x86-64: Clear the R_X86_64_converted_reloc_bit bit
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/ChangeLog | 6 ++++++
bfd/elf64-x86-64.c | 8 ++++++--
ld/ChangeLog | 7 +++++++
ld/testsuite/{ld-sh/fdpic-stack.s => ld-x86-64/pr23324.s} | 3 ++-
ld/testsuite/ld-x86-64/pr23324a.d | 8 ++++++++
ld/testsuite/ld-x86-64/pr23324b.d | 8 ++++++++
ld/testsuite/ld-x86-64/x86-64.exp | 2 ++
7 files changed, 39 insertions(+), 3 deletions(-)
copy ld/testsuite/{ld-sh/fdpic-stack.s => ld-x86-64/pr23324.s} (58%)
create mode 100644 ld/testsuite/ld-x86-64/pr23324a.d
create mode 100644 ld/testsuite/ld-x86-64/pr23324b.d
--
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 21a2eea2d [ELF] - Add a test case for relocation pointing to deduplicat [...]
new dcbc8544a [ELF] - LTO: add test for createEmptyIndex.
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/lto/thinlto-index-only.ll | 5 +++++
1 file changed, 5 insertions(+)
--
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 binutils-2_31-branch
in repository binutils-gdb.
from b29dd6c33f x86-64: Clear the R_X86_64_converted_reloc_bit bit
new 8d8c8344ce Also install diagnostics.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:
bfd/ChangeLog | 5 +++++
bfd/Makefile.am | 3 ++-
bfd/Makefile.in | 6 ++++--
3 files changed, 11 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.