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 20a4d0bd98 Updated Japanese translation for the binutils sub-directory.
new 23e60e7a4e gdb: Extend the trad-frame API
new 78a3b0fab8 gdb/riscv: Provide non-DWARF stack unwinder
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:
gdb/ChangeLog | 27 +++++++
gdb/riscv-tdep.c | 227 +++++++++++++++++++++++++++++++++++++++++++------------
gdb/riscv-tdep.h | 2 +
gdb/trad-frame.c | 25 +++++-
gdb/trad-frame.h | 8 ++
5 files changed, 239 insertions(+), 50 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 lldb.
from a0ceb0226 [Symtab][NFC] Added llvm_unreachable to supress compiler warning
new 0c5748f6d [PseudoTerminal][NFC] Use llvm errno helpers
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:
source/Host/common/PseudoTerminal.cpp | 31 ++++++++++++++++++++-----------
1 file changed, 20 insertions(+), 11 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 ab40e20ba7b 2018-09-03 Richard Biener <rguenther(a)suse.de>
new 1580b4793d8 PR libstdc++/78179 run long double tests separately
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:
libstdc++-v3/ChangeLog | 6 ++++++
.../headers/cmath/hypot-long-double.cc} | 24 +++++-----------------
.../testsuite/26_numerics/headers/cmath/hypot.cc | 5 ++++-
3 files changed, 15 insertions(+), 20 deletions(-)
copy libstdc++-v3/testsuite/{23_containers/vector/modifiers/emplace/cxx17_return.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 0b3a9bd4 [clangd] Factor out the data-swapping functionality from MemI [...]
new 7e0ee20b [clangd] Handle errors before checking for cancelltion
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:
clangd/ClangdServer.cpp | 5 ++---
1 file changed, 2 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 clang-tools-extra.
from edb9ae24 [clangd] Support multiple #include headers in one symbol.
new 0b3a9bd4 [clangd] Factor out the data-swapping functionality from MemI [...]
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:
clangd/index/FileIndex.cpp | 91 ++++++---------------
clangd/index/FileIndex.h | 40 +++------
clangd/index/Index.cpp | 31 +++++++
clangd/index/Index.h | 31 ++++++-
clangd/index/MemIndex.cpp | 103 ++++++------------------
clangd/index/MemIndex.h | 45 ++++++-----
clangd/index/dex/DexIndex.cpp | 156 +++++++++++++++---------------------
clangd/index/dex/DexIndex.h | 35 +++++---
unittests/clangd/DexIndexTests.cpp | 116 ++++++++++-----------------
unittests/clangd/FileIndexTests.cpp | 51 ++++++------
unittests/clangd/IndexTests.cpp | 150 +++++++++++++++-------------------
unittests/clangd/TestIndex.cpp | 20 +----
unittests/clangd/TestIndex.h | 23 +-----
13 files changed, 375 insertions(+), 517 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 661fdbbb031 Fix thinko (PR tree-optimization/87201).
new 01b2b7a573c PR libstdc++/78595 implement insertion into maps in terms o [...]
new dc0e5150d2f PR libstdc++/87194 fix range insertion into maps and sets
new 0085f3a8218 Fix vector::_Temporary_value::_M_ptr
new ab40e20ba7b 2018-09-03 Richard Biener <rguenther(a)suse.de>
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:
gcc/ChangeLog | 6 +
gcc/testsuite/ChangeLog | 5 +
gcc/testsuite/gcc.dg/torture/pr87200.c | 23 ++++
gcc/tree-ssa-sccvn.c | 9 +-
libstdc++-v3/ChangeLog | 71 ++++++++++++
libstdc++-v3/include/bits/stl_map.h | 33 +++---
libstdc++-v3/include/bits/stl_multimap.h | 32 +++---
libstdc++-v3/include/bits/stl_multiset.h | 12 +-
libstdc++-v3/include/bits/stl_set.h | 12 +-
libstdc++-v3/include/bits/stl_tree.h | 78 ++++++++-----
libstdc++-v3/include/bits/stl_vector.h | 6 +-
libstdc++-v3/include/bits/unordered_map.h | 33 +++---
.../23_containers/map/modifiers/insert/78595.cc | 115 +++++++++++++++++++
.../map/modifiers/insert/87194.cc} | 29 ++---
.../multimap/modifiers/insert/78595.cc | 115 +++++++++++++++++++
.../multimap/modifiers/insert/87194.cc} | 29 ++---
.../multiset/modifiers/insert/87194.cc} | 27 +++--
.../set/modifiers/insert/87194.cc} | 27 +++--
.../23_containers/unordered_map/modifiers/78595.cc | 122 +++++++++++++++++++++
.../unordered_multimap/modifiers/78595.cc | 122 +++++++++++++++++++++
20 files changed, 753 insertions(+), 153 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/torture/pr87200.c
create mode 100644 libstdc++-v3/testsuite/23_containers/map/modifiers/insert/78595.cc
copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 23_containers/ma [...]
create mode 100644 libstdc++-v3/testsuite/23_containers/multimap/modifiers/insert/ [...]
copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 23_containers/mu [...]
copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 23_containers/mu [...]
copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 23_containers/se [...]
create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/78595.cc
create mode 100644 libstdc++-v3/testsuite/23_containers/unordered_multimap/modifie [...]
--
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 aldot/fortran-fe-stringpool
in repository gcc.
at 674ba1d823d Use stringpool for OMP clause reduction code
This branch includes the following new commits:
new c6a9b1d614d Fix libgcc i386 linux-unwind for uClibc
new adf529d9256 libssp: enable vsnprintf for uClibc
new 13aa5a33c86 testsuite: Fix check_missing_uclibc_feature contitional
new b66f5daf09d PR52665 do not let .ident confuse assembler scan tests
new 0ec476167c1 use gfc_get_string in gfc_match_defined_op_name()
new 595fba65aef Use stringpool for gfc_get_name
new e0f43572dc7 Use stringpool for gfc_match_generic_spec
new 848def17fdb Use stringpool for gfc_match("%n")
new c6716a2ac9b Use stringpool for association_list
new c20c70e9781 Use stringpool for some gfc_code2string return values
new 94e6c5346e0 Add uop/name helpers
new bb62bfca808 Use stringpool for modules
new 6196559fa6e Do not copy name for check_function_name
new 292020a75ab Do pointer comparison instead of strcmp
new 82cbee454af gdbinit: break on gfc_internal_error
new 05efcedf9cd Use stringpool for remaining names
new 97441a8709c gcc/fortran/ChangeLog:
new ae2ed61f266 Fix write_omp_udr for user-operator REDUCTIONs
new d55d25e27f9 Use stringpool for iso_c_binding module names
new 1714895ebbb Do pointer comparison in iso_c_binding_module
new b7a6319b19b Use stringpool for iso_fortran_env
new 2d15e58040a Use stringpool for charkind
new ff5a193a7d4 Use stringpool and unified uppercase handling
new ff010b0f8fa Use stringpool in class et al
new 52e068af8e6 Use stringpool for module tbp
new 85d09932f62 Use stringpool in class and procedure-pointer result
new a20d0fe22b7 Use stringpool for module binding_label
new e19e16f3dd0 Use stringpool for intrinsic functions
new 2a5c56a734e Use stringpool on loading module symbols
new 24d2c6f59b5 Use stringpool for mangled common names
new ecdb6d5dcbf Free type-bound procedure structs
new 674ba1d823d Use stringpool for OMP clause reduction code
The 32 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.
--
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 0985a4407d2 Rename a few unittests/.../Foo.cpp files to FooTest.cpp
new 24b52d3cc6d DAG: Handle extract_vector_elt in isKnownNeverNaN
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/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 +++
test/CodeGen/AMDGPU/known-never-nan.ll | 25 +++++++++++++++++++++++++
2 files changed, 28 insertions(+)
create mode 100644 test/CodeGen/AMDGPU/known-never-nan.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 b6f00d89c7 Updated Finnish translation for the ld sub-directory.
new 20a4d0bd98 Updated Japanese translation for the binutils sub-directory.
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:
binutils/ChangeLog | 4 +
binutils/po/ja.po | 9660 ++++++++++++++++++++++++++++++++++++++--------------
2 files changed, 7081 insertions(+), 2583 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 6f5bdb3486b 2018-09-03 Richard Biener <rguenther(a)suse.de>
new 661fdbbb031 Fix thinko (PR tree-optimization/87201).
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 | 6 ++++++
gcc/tree-switch-conversion.c | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.