This is an automated email from the git hooks/post-receive script.
Yvan Roux pushed a change to annotated tag linaro-5.4-2017.01-rc1
in repository toolchain/gcc.
at d9389eb (tag)
tagging 4b199e04389bba632e43e0b50b6bc6858f686c4b (commit)
replaces linaro-snapshot-5.4-2016.12
tagged by Yvan Roux
on Tue Dec 20 21:50:49 2016 +0100
- Log -----------------------------------------------------------------
Linaro GCC Release Candidate 5.4-2017.01-rc1
-----------------------------------------------------------------------
This annotated tag includes the following new commits:
new 4b199e0 Make Linaro GCC Release Candidate 5.4-2017.01-rc1.
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.
--
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 36fc3f6 IR: Eliminate non-determinism in the module summary analysis.
new 0ef22e2 [ObjectYAML] Support for DWARF debug_info section
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/DebugInfo/DWARF/DWARFFormValue.h | 2 +
include/llvm/DebugInfo/DWARF/DWARFUnit.h | 8 +
include/llvm/ObjectYAML/DWARFYAML.h | 38 ++++
include/llvm/ObjectYAML/MachOYAML.h | 1 -
lib/DebugInfo/DWARF/DWARFFormValue.cpp | 12 ++
lib/ObjectYAML/DWARFYAML.cpp | 33 ++-
...ARF-debug_abbrev.yaml => DWARF-debug_info.yaml} | 236 ++++++++++++++-------
tools/obj2yaml/dwarf2yaml.cpp | 117 +++++++++-
tools/yaml2obj/yaml2dwarf.cpp | 126 +++++++++++
tools/yaml2obj/yaml2macho.cpp | 2 +
tools/yaml2obj/yaml2obj.h | 1 +
11 files changed, 496 insertions(+), 80 deletions(-)
copy test/ObjectYAML/MachO/{DWARF-debug_abbrev.yaml => DWARF-debug_info.yaml} (64%)
--
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 a966b1f [OPENMP] Fix for PR31416: Clang crashes on OMPCapturedExpr du [...]
new c8c1a19 [c++1z] P0195R2: Support pack-expansion of using-declarations.
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/clang/AST/DeclCXX.h | 119 ++++++++++++-
include/clang/AST/RecursiveASTVisitor.h | 2 +
include/clang/Basic/DeclNodes.td | 1 +
include/clang/Basic/DiagnosticParseKinds.td | 7 +
include/clang/Basic/DiagnosticSemaKinds.td | 5 +
include/clang/Parse/Parser.h | 6 +-
include/clang/Sema/Sema.h | 16 +-
include/clang/Sema/Template.h | 5 +
include/clang/Serialization/ASTBitCodes.h | 2 +
lib/AST/DeclBase.cpp | 5 +-
lib/AST/DeclCXX.cpp | 36 +++-
lib/CodeGen/CGDecl.cpp | 4 +
lib/Parse/ParseDeclCXX.cpp | 79 ++-------
lib/Sema/SemaDeclCXX.cpp | 74 ++++++---
lib/Sema/SemaExprCXX.cpp | 14 +-
lib/Sema/SemaOverload.cpp | 8 +-
lib/Sema/SemaTemplateInstantiateDecl.cpp | 193 ++++++++++++++-------
lib/Sema/SemaTemplateVariadic.cpp | 19 +--
lib/Sema/TreeTransform.h | 143 ++++++++++------
lib/Serialization/ASTCommon.cpp | 1 +
lib/Serialization/ASTReaderDecl.cpp | 15 ++
lib/Serialization/ASTWriterDecl.cpp | 12 ++
test/PCH/cxx1z-using-declaration.cpp | 35 ++++
test/Parser/cxx1z-using-declaration.cpp | 9 +-
test/SemaTemplate/cxx1z-using-declaration.cpp | 230 ++++++++++++++++++++++++++
tools/libclang/CIndex.cpp | 1 +
26 files changed, 794 insertions(+), 247 deletions(-)
create mode 100644 test/PCH/cxx1z-using-declaration.cpp
create mode 100644 test/SemaTemplate/cxx1z-using-declaration.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 clang-tools-extra.
from 31ec885 [change-namespace] do not fix calls to overloaded operator fu [...]
new 5d13e3b [clang-tidy] Add modernize-use-default-member-init check
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/modernize/CMakeLists.txt | 1 +
clang-tidy/modernize/ModernizeTidyModule.cpp | 3 +
clang-tidy/modernize/UseDefaultMemberInitCheck.cpp | 241 +++++++++++++
clang-tidy/modernize/UseDefaultMemberInitCheck.h | 45 +++
docs/ReleaseNotes.rst | 6 +
docs/clang-tidy/checks/list.rst | 1 +
.../checks/modernize-use-default-member-init.rst | 49 +++
...odernize-use-default-member-init-assignment.cpp | 184 ++++++++++
.../modernize-use-default-member-init.cpp | 376 +++++++++++++++++++++
9 files changed, 906 insertions(+)
create mode 100644 clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
create mode 100644 clang-tidy/modernize/UseDefaultMemberInitCheck.h
create mode 100644 docs/clang-tidy/checks/modernize-use-default-member-init.rst
create mode 100644 test/clang-tidy/modernize-use-default-member-init-assignment.cpp
create mode 100644 test/clang-tidy/modernize-use-default-member-init.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 036647c [LoopUnroll] Modify a comment to clarify the usage of TripCou [...]
new 36fc3f6 IR: Eliminate non-determinism in the module summary analysis.
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/MapVector.h | 6 +-
include/llvm/ADT/SetVector.h | 6 +
include/llvm/IR/ModuleSummaryIndex.h | 99 ++++++----------
lib/Analysis/ModuleSummaryAnalysis.cpp | 48 ++++----
lib/Bitcode/Reader/BitcodeReader.cpp | 129 +++++++++------------
lib/Bitcode/Writer/BitcodeWriter.cpp | 12 +-
...o-function-summary-callgraph-profile-summary.ll | 4 +-
7 files changed, 132 insertions(+), 172 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 compiler-rt.
from 7e560a2 Fix build breakage on FreeBSD after rL289878/rL289881
new e06bbf7 [scudo] ARM32 support
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:
cmake/config-ix.cmake | 2 +-
test/scudo/random_shuffle.cpp | 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 glibc.
from 06fea22 Replace use of snprintf with strfrom in libm tests
new 60c07b0 Add preprocessor indentation for llogb macro in tgmath.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:
ChangeLog | 5 +++++
math/tgmath.h | 2 +-
2 files changed, 6 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 gcc.
from 03ab671 * gcc.dg/sms-3.c: Add -fno-sched-pressure for powerpc. * gc [...]
new 89d842e Use the middle-end boolean_type_node
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/fortran/ChangeLog | 4 ++++
gcc/fortran/trans-types.c | 4 ----
2 files changed, 4 insertions(+), 4 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 1e77c70 [ARM] Implement isExtractSubvectorCheap.
new 036647c [LoopUnroll] Modify a comment to clarify the usage of TripCou [...]
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/Transforms/Utils/LoopUnroll.cpp | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 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 glibc.
from dd037fb S390: Optimize lock-elision by decrementing adapt_count at unlock.
new 06fea22 Replace use of snprintf with strfrom in libm tests
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:
ChangeLog | 21 +++++++++++++++
math/libm-test.inc | 78 ++++++++++++++++++++++++++++++++---------------------
math/test-double.h | 5 +---
math/test-float.h | 5 +---
math/test-ldouble.h | 5 +---
5 files changed, 72 insertions(+), 42 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.