This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository libcxx.
from e9115a1 Add tests to check that swap(std::function, std::function) is [...]
new bcef974 Updated notes about issues; marked 2062, 2223, 2394, 2460 and [...]
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:
www/upcoming_meeting.html | 66 +++++++++++++++++++++++------------------------
1 file changed, 33 insertions(+), 33 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 2189196 Minor simplification to std::_Bind_result helpers
new 132ed07 runtime: copy channel code from Go 1.7 runtime
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/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/escape.cc | 4 -
gcc/go/gofrontend/expressions.cc | 38 +-
gcc/go/gofrontend/runtime.def | 19 +-
gcc/go/gofrontend/statements.cc | 62 +--
gcc/go/gofrontend/types.cc | 47 ++
gcc/go/gofrontend/types.h | 3 +
libgo/Makefile.am | 1 -
libgo/Makefile.in | 8 +-
libgo/go/context/context_test.go | 2 +-
libgo/go/runtime/chan.go | 724 ++++++++++++++++++++++++
libgo/go/runtime/runtime2.go | 8 +-
libgo/go/runtime/select.go | 697 +++++++++++++++++++++++
libgo/go/runtime/stubs.go | 64 +++
libgo/go/runtime/trace.go | 1008 ++++++++++++++++++++++++++++++++++
libgo/runtime/chan.goc | 1130 --------------------------------------
libgo/runtime/chan.h | 76 ---
libgo/runtime/go-cgo.c | 5 +-
libgo/runtime/heapdump.c | 4 +-
libgo/runtime/mgc0.c | 9 +-
libgo/runtime/proc.c | 44 +-
libgo/runtime/runtime.h | 4 +-
libgo/runtime/sema.goc | 15 +-
23 files changed, 2676 insertions(+), 1298 deletions(-)
create mode 100644 libgo/go/runtime/chan.go
create mode 100644 libgo/go/runtime/select.go
create mode 100644 libgo/go/runtime/trace.go
delete mode 100644 libgo/runtime/chan.goc
delete mode 100644 libgo/runtime/chan.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 a2e3c5a Use unique_ptr in LLVMContextImpl's constant maps.
new bd90bcc Add llvm::apply to STLExtras.
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/llvm/ADT/STLExtras.h | 23 +++++++++++++++++++++
unittests/ADT/STLExtrasTest.cpp | 45 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 68 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 master
in repository libcxx.
from f7b867b [libcxx] Fix gcc build.
new e9115a1 Add tests to check that swap(std::function, std::function) is [...]
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:
.../func.wrap.func/func.wrap.func.alg/swap.pass.cpp | 15 ++++++++++++++-
1 file changed, 14 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 users/palves/cxx-eliminate-cleanups
in repository binutils-gdb.
discards 330ce24 parse_expression -> gdb::unique_ptr
discards 0f64283 ui_file_xstrdup -> std::string
discards f0acc3e Introduce gdb::unique_ptr / gdb::unique_malloc_ptr
new c28b2a9 Introduce gdb::unique_ptr
new 73a367e ui_file_xstrdup -> std::string
new a0cf906 'struct parse_expression *' -> gdb::unique_ptr<expression>
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (330ce24)
\
N -- N -- N refs/heads/users/palves/cxx-eliminate-cleanups (a0cf906)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
gdb/common/gdb_unique_ptr.h | 47 ++++++++++++++++++++-------------------------
gdb/common/safe-bool.h | 10 ++++------
gdb/symtab.h | 7 +++++++
gdb/tracepoint.c | 15 +++++++--------
gdb/varobj.c | 2 +-
5 files changed, 40 insertions(+), 41 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 b28828e [Analysis] Use unique_ptr for CallGraph::FunctionMap.
new 78e1db5 Use StringRef in LangOptions::isNoBuiltinFunc API (NFC)
new ed407c4 [Examples] Fix use of sema.LateParsedTemplateMap in clang/examples.
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:
examples/PrintFunctionNames/PrintFunctionNames.cpp | 5 +++--
include/clang/Basic/LangOptions.h | 2 +-
lib/Basic/LangOptions.cpp | 3 +--
3 files changed, 5 insertions(+), 5 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 3ecfb65 [include-fixer] query-mode should be false by default.
new b17f852 [clang-tidy] Add a whitelist option in google-runtime-references.
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/google/NonConstReferences.cpp | 24 ++++++++++++++++++++++
clang-tidy/google/NonConstReferences.h | 7 +++++--
.../checks/google-runtime-references.rst | 8 ++++++++
test/clang-tidy/google-runtime-references.cpp | 15 +++++++++++++-
4 files changed, 51 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 llvm.
from e587b6c [ARM] Fix invalid VLDM/VSTM access when targeting Big Endian [...]
new f086ef8 [ADT] Let MapVector handle non-copyable values.
new a5afae3 [ADT] Add make_pointe{e,r}_iterator.
new a2e3c5a Use unique_ptr in LLVMContextImpl's constant maps.
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:
include/llvm/ADT/MapVector.h | 16 +++++++++++++++
include/llvm/ADT/iterator.h | 10 +++++++++
lib/IR/Constants.cpp | 34 ++++++++++++++++---------------
lib/IR/LLVMContextImpl.cpp | 11 +++++-----
lib/IR/LLVMContextImpl.h | 16 ++++++++-------
unittests/ADT/IteratorTest.cpp | 45 +++++++++++++++++++++++------------------
unittests/ADT/MapVectorTest.cpp | 18 +++++++++++++++++
7 files changed, 102 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.
from 46257d7 [Sema] Prevent using member declaration diagnostic if the bas [...]
new 1f062cd [Sema] Use unique_ptr instead of raw pointers in the late-par [...]
new 7c4b8c0 [AST] Convert MangleNumberingContext to a unique_ptr.
new 7b7c816 [AST] Use unique_ptr for VTableLayout.
new dd0969a Use unique_ptr for VPtrLocationsMap and VPtrInfoVector.
new be96a85 Use unique_ptr for VTableBuilder::VFTableLayouts map.
new c4e9e7b Use unique_ptr for VTableBuilder::VBaseInfo map.
new 845b38f [AST] Convert Marshallers to use unique_ptr.
new 31365f6 [Analysis] Use unique_ptr in AnalyaisDeclContextManager's Con [...]
new b28828e [Analysis] Use unique_ptr for CallGraph::FunctionMap.
The 9 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 | 4 +-
include/clang/AST/MangleNumberingContext.h | 2 +-
include/clang/AST/VTableBuilder.h | 29 +++---
include/clang/Analysis/AnalysisContext.h | 3 +-
include/clang/Analysis/CallGraph.h | 15 ++-
include/clang/Sema/ExternalSemaSource.h | 3 +-
include/clang/Sema/MultiplexExternalSemaSource.h | 4 +-
include/clang/Sema/Sema.h | 5 +-
include/clang/Serialization/ASTReader.h | 4 +-
lib/AST/ASTContext.cpp | 7 +-
lib/AST/CXXABI.h | 3 +-
lib/AST/ItaniumCXXABI.cpp | 5 +-
lib/AST/MicrosoftCXXABI.cpp | 5 +-
lib/AST/VTableBuilder.cpp | 115 +++++++++++------------
lib/ASTMatchers/Dynamic/Marshallers.h | 69 +++++++-------
lib/ASTMatchers/Dynamic/Registry.cpp | 53 +++++------
lib/Analysis/AnalysisDeclContext.cpp | 14 +--
lib/Analysis/CallGraph.cpp | 16 ++--
lib/CodeGen/MicrosoftCXXABI.cpp | 58 ++++++------
lib/Sema/MultiplexExternalSemaSource.cpp | 3 +-
lib/Sema/Sema.cpp | 1 -
lib/Sema/SemaTemplate.cpp | 4 +-
lib/Sema/SemaTemplateInstantiateDecl.cpp | 7 +-
lib/Serialization/ASTReader.cpp | 7 +-
lib/Serialization/ASTWriter.cpp | 10 +-
25 files changed, 226 insertions(+), 220 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 hsa
in repository gcc.
from b03ea67 Properly detect variadic arguments
new b20b012 Expand FMA_EXPR to HSAIL
new c50e664 Ignore prefetch builtin
new 4c440d9 Fail instead of calling an unknown GOMP builtin
new 0e35484 Fix another finalizer type complaint
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.hsa | 19 +++++++++++++++++++
gcc/hsa-gen.c | 51 +++++++++++++++++++++++++++++++++++++++++++++------
2 files changed, 64 insertions(+), 6 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.