This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 058e778f200 PR c++/81045 - Wrong type-dependence with auto return type.
new d99a23f0f0d fix ChangeLog
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/cp/ChangeLog | 2 +-
1 file changed, 1 insertion(+), 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 98af81b1e38 PR c++/81045 - Wrong type-dependence with auto return type.
new 845b0227f3f fix ChangeLog
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/cp/ChangeLog | 2 +-
1 file changed, 1 insertion(+), 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 cffa61559ac Fix array decay handling in constant expressions.
new 7f989b0ede7 PR c++/80384 - ICE with dependent noexcept-specifier
new 62ec8be4cda PR c++/80614 - Wrong mangling for C++17 noexcept type
new d0100c8e1d0 PR c++/80465 - ICE with generic lambda with noexcept-specifier.
new aed3abdfdfd PR c++/80639 - ICE with invalid PMF initialization.
new 1223859fc0a PR c++/80831 - ICE with -fsyntax-only.
new 9e8989ee574 PR c++/80174 - ICE with partial specialization of member t [...]
new 643b8efdc09 PR c++/81102 - Wrong error with partial specialization.
new 98af81b1e38 PR c++/81045 - Wrong type-dependence with auto return type.
The 8 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/cp/ChangeLog | 33 +++++++++
gcc/cp/call.c | 3 +
gcc/cp/decl2.c | 10 +--
gcc/cp/lambda.c | 9 ++-
gcc/cp/mangle.c | 5 ++
gcc/cp/pt.c | 85 +++++++++++++++-------
gcc/cp/typeck.c | 5 +-
gcc/testsuite/g++.dg/cpp1y/auto-fn27.C | 2 +-
gcc/testsuite/g++.dg/cpp1y/auto-fn39.C | 48 ++++++++++++
gcc/testsuite/g++.dg/cpp1z/noexcept-type15.C | 11 +++
gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C | 11 +++
gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C | 7 ++
gcc/testsuite/g++.dg/other/fsyntax-only1.C | 45 ++++++++++++
.../g++.dg/template/partial-specialization6.C | 28 +++++++
.../g++.dg/template/partial-specialization7.C | 40 ++++++++++
gcc/testsuite/g++.dg/template/partial5.C | 2 +-
gcc/testsuite/g++.dg/template/ptrmem31.C | 23 ++++++
17 files changed, 326 insertions(+), 41 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn39.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type15.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C
create mode 100644 gcc/testsuite/g++.dg/other/fsyntax-only1.C
create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization6.C
create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization7.C
create mode 100644 gcc/testsuite/g++.dg/template/ptrmem31.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 gcc.
from 96680ffca59 Daily bump.
new 9e37fbc219b PR c++/80639 - ICE with invalid PMF initialization.
new bb9012bf8ce PR c++/80831 - ICE with -fsyntax-only.
new 689770fa353 PR c++/80174 - ICE with partial specialization of member t [...]
new 77aee073b54 PR c++/81102 - Wrong error with partial specialization.
new c2ca6e199d6 PR c++/80614 - Wrong mangling for C++17 noexcept type
new 23f59d67bd8 PR c++/80465 - ICE with generic lambda with noexcept-specifier.
new 058e778f200 PR c++/81045 - Wrong type-dependence with auto return type.
The 7 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/cp/ChangeLog | 31 +++++++++
gcc/cp/call.c | 3 +
gcc/cp/decl2.c | 10 +--
gcc/cp/lambda.c | 9 +--
gcc/cp/mangle.c | 5 ++
gcc/cp/pt.c | 78 ++++++++++++++--------
gcc/cp/typeck.c | 5 +-
gcc/testsuite/g++.dg/cpp1y/auto-fn27.C | 2 +-
gcc/testsuite/g++.dg/cpp1y/auto-fn39.C | 48 +++++++++++++
gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C | 11 +++
gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C | 7 ++
gcc/testsuite/g++.dg/other/fsyntax-only1.C | 45 +++++++++++++
.../g++.dg/template/partial-specialization6.C | 28 ++++++++
.../g++.dg/template/partial-specialization7.C | 40 +++++++++++
gcc/testsuite/g++.dg/template/partial5.C | 2 +-
gcc/testsuite/g++.dg/template/ptrmem31.C | 23 +++++++
16 files changed, 306 insertions(+), 41 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn39.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type16.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type17.C
create mode 100644 gcc/testsuite/g++.dg/other/fsyntax-only1.C
create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization6.C
create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization7.C
create mode 100644 gcc/testsuite/g++.dg/template/ptrmem31.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 gcc-7-branch
in repository gcc.
from 48e788f5207 Daily bump.
new 98049775b68 * constexpr.c (potential_constant_expression_1): Allow 'thi [...]
new cffa61559ac Fix array decay handling in constant expressions.
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/cp/ChangeLog | 8 ++++++
gcc/cp/constexpr.c | 2 +-
gcc/cp/parser.c | 8 ++++--
gcc/cp/pt.c | 35 +++++++++++++++++++++++++-
gcc/testsuite/g++.dg/cpp1z/lambda-this3.C | 10 ++++++++
gcc/testsuite/g++.dg/template/function1.C | 4 +--
gcc/testsuite/g++.dg/template/nontype-array1.C | 27 ++++++++++++++++++++
7 files changed, 87 insertions(+), 7 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1z/lambda-this3.C
create mode 100644 gcc/testsuite/g++.dg/template/nontype-array1.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 llvm.
from cd03942492d RegScavenging: Add scavengeRegisterBackwards()
new 7eaaf7b8d0f Tidy up some calls to getRegister for readability.
new e14480de7fe Remove unused forward declaration.
new 65165bbd261 Remove the old and unused PPC32 and PPC64TargetMachine classes.
new e8987fde10e Turn a large if block into a smaller early return for clarity.
new 91d2a849dda Rework logic and comment out the default relocation models [...]
The 5 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/PowerPC/PPC.h | 1 -
lib/Target/PowerPC/PPCISelLowering.cpp | 11 +++---
lib/Target/PowerPC/PPCTargetMachine.cpp | 70 ++++++++++++---------------------
lib/Target/PowerPC/PPCTargetMachine.h | 25 +-----------
4 files changed, 33 insertions(+), 74 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 c458212c1 Error when discarding .dynstr.
new b0147d1ba Update documentation to reflection disuse of external cvtres.
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:
COFF/Driver.cpp | 6 +++---
docs/windows_support.rst | 2 +-
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 253e52662d9 [PPC] Remove isBarrier from CFENCE8's definition.
new cd03942492d RegScavenging: Add scavengeRegisterBackwards()
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/CodeGen/RegisterScavenging.h | 18 +
lib/CodeGen/RegisterScavenging.cpp | 433 +++++++++++++++------
test/CodeGen/AArch64/reg-scavenge-frame.mir | 42 +-
test/CodeGen/AMDGPU/attr-amdgpu-num-sgpr.ll | 77 ++--
.../code-object-metadata-kernel-debug-props.ll | 4 +-
test/CodeGen/AMDGPU/frame-index-elimination.ll | 14 +-
test/CodeGen/ARM/alloca-align.ll | 2 +-
test/CodeGen/ARM/execute-only-big-stack-frame.ll | 4 +-
test/CodeGen/ARM/fpoffset_overflow.mir | 12 +-
test/CodeGen/Mips/emergency-spill-slot-near-fp.ll | 88 +++--
test/CodeGen/PowerPC/dyn-alloca-aligned.ll | 4 +-
test/CodeGen/PowerPC/scavenging.mir | 67 +++-
test/CodeGen/Thumb/large-stack.ll | 12 +-
test/CodeGen/X86/scavenger.mir | 29 +-
14 files changed, 573 insertions(+), 233 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 1cea15532e7 [SelectionDAG] Update Loop info after splitting critical edges.
new 253e52662d9 [PPC] Remove isBarrier from CFENCE8's definition.
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/PowerPC/PPCInstr64Bit.td | 2 +-
1 file changed, 1 insertion(+), 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 zorg.
from 1eeb2f1 Added ability to customize check step.
new 0663558 Assert that -DCMAKE_INSTALL_PREFIX is not specified for multi [...]
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:
zorg/buildbot/builders/ClangLTOBuilder.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.