This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from bb6e576c837 P1064R0 - Allowing Virtual Function Calls in Constant Expr [...]
new 77f19263b16 2018-09-18 Paul Thomas <pault(a)gcc.gnu.org>
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 | 8 +++++
gcc/fortran/trans-expr.c | 7 ++--
gcc/testsuite/ChangeLog | 19 +++-------
gcc/testsuite/gfortran.dg/elemental_function_2.f90 | 40 ++++++++++++++++++++++
4 files changed, 57 insertions(+), 17 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/elemental_function_2.f90
--
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 7dee23aa151 [bugpoint] Revert r318459
new 520d38cd140 [benchmark] Mention another cherry-picked change in README. [...]
new 638f42a216c Revert r342494 as it was failing on a bot and the author ca [...]
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:
.../MergeICmps/X86/alias-merge-blocks.ll | 66 ----------------------
utils/benchmark/README.LLVM | 2 +
2 files changed, 2 insertions(+), 66 deletions(-)
delete mode 100644 test/Transforms/MergeICmps/X86/alias-merge-blocks.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 lldb.
from a99c31d8b Revert "[DataFormatters] Add formatter for C++17 std::variant"
new 6413d1409 Allow use of self.filecheck in LLDB tests (c.f self.expect)
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 | 11 +-
lldb.xcodeproj/project.pbxproj | 2 +-
packages/Python/lldbsuite/test/configuration.py | 11 ++
packages/Python/lldbsuite/test/dotest.py | 7 ++
packages/Python/lldbsuite/test/dotest_args.py | 2 +
.../formatters/TestFormatters.py | 118 +++++++++------------
.../data-formatter/typedef_array/main.cpp | 7 +-
packages/Python/lldbsuite/test/lldbtest.py | 48 +++++++++
test/CMakeLists.txt | 1 +
9 files changed, 137 insertions(+), 70 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 zorg.
from fc65a09 [zorg] Use gold for lldb-x86_64-fedora-28-cmake
new ad732c4 [build.py] Teach the Xcode lldb builder to specify a FileChec [...]
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/jenkins/build.py | 3 ++-
1 file changed, 2 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 8c56c0b5e9e 2018-09-18 Paul Thomas <pault(a)gcc.gnu.org>
new bb6e576c837 P1064R0 - Allowing Virtual Function Calls in Constant Expr [...]
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 | 5 ++
gcc/cp/ChangeLog | 15 ++++
gcc/cp/call.c | 5 +-
gcc/cp/class.c | 7 +-
gcc/cp/constexpr.c | 42 ++++++++++-
gcc/cp/decl.c | 17 +++--
gcc/gimple-fold.c | 7 +-
gcc/testsuite/ChangeLog | 16 ++++
gcc/testsuite/g++.dg/cpp0x/constexpr-virtual5.C | 2 +-
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual1.C | 8 ++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual2.C | 49 ++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual3.C | 52 +++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual4.C | 57 ++++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual5.C | 60 +++++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual6.C | 25 +++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual7.C | 87 ++++++++++++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual8.C | 50 +++++++++++++
gcc/testsuite/g++.dg/cpp2a/constexpr-virtual9.C | 83 +++++++++++++++++++++
.../g++.dg/diagnostic/virtual-constexpr.C | 7 +-
19 files changed, 573 insertions(+), 21 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual1.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual2.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual3.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual4.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual5.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual6.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual7.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual8.C
create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual9.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-8-branch
in repository gcc.
from d19440b4833 2018-09-18 Paul Thomas <pault(a)gcc.gnu.org>
new 8be7d89e2a3 2018-09-18 Janus Weil <janus(a)gcc.gnu.org>
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 | 7 ++++++
gcc/fortran/expr.c | 15 +++++-------
gcc/testsuite/ChangeLog | 6 +++++
gcc/testsuite/gfortran.dg/typebound_call_30.f90 | 32 +++++++++++++++++++++++++
4 files changed, 51 insertions(+), 9 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/typebound_call_30.f90
--
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 d9a480a9 [clangd] Get rid of Decls parameter in indexMainDecls. NFC
new 96b05ccb [clangd] Fix error handling for SymbolID parsing (notably YAM [...]
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/Index.cpp | 9 +++++++--
clangd/index/Index.h | 12 +++---------
clangd/index/SymbolYAML.cpp | 11 +++++++----
clangd/index/dex/dexp/Dexp.cpp | 8 ++++----
clangd/indexer/IndexerMain.cpp | 3 +--
5 files changed, 22 insertions(+), 21 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 0c902dcd5 build: fix standalone builds for compiler-rt on Darwin
new d57a71d01 [builtins] Fix c?zdi2 on sparc64/Linux and ignore riscv32
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/builtins/clzdi2.c | 9 +++++++--
lib/builtins/ctzdi2.c | 9 +++++++--
2 files changed, 14 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 9ae6d92a561 Remove svn:executable from a documentation file.
new 7dee23aa151 [bugpoint] Revert r318459
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:
tools/bugpoint/ExecutionDriver.cpp | 22 ++++++++++++++--------
1 file changed, 14 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 llvm.
from cd4dcdaaf24 [Docs] [Support] System Library to Support Library transiti [...]
new 9ae6d92a561 Remove svn:executable from a documentation file.
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:
docs/SupportLibrary.rst | 0
1 file changed, 0 insertions(+), 0 deletions(-)
mode change 100755 => 100644 docs/SupportLibrary.rst
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.