This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 12e38cb73b4 Remove svnprop eol-style:native from Casting.h
new ab480f45cd2 [Support] Add support for unique_ptr<> to Casting.h.
new 5bfc47d1521 Bitcode: Move version and global value module code parsers [...]
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:
include/llvm/Support/Casting.h | 70 +++++
lib/Bitcode/Reader/BitcodeReader.cpp | 516 +++++++++++++++++++----------------
unittests/Support/Casting.cpp | 75 +++++
3 files changed, 421 insertions(+), 240 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 d0d13f5774d [InstCombine] Teach SimplifyMultipleUseDemandedBits to hand [...]
new 12e38cb73b4 Remove svnprop eol-style:native from Casting.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:
--
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 00f804a0 [libcxx] [test] Avoid Clang's -Wunused-const-variable in is_c [...]
new 6d5fdc11 [libc++] Use more appropriate conditional for ABI macro 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:
include/__config | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 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 39089ca Added support for requesting a clean build from a commit comment.
new 1ee48e8 Updated list of builders for myself.
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:
buildbot/osuosl/master/config/status.py | 7 ++++---
1 file changed, 4 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 1db7e25e94b [InstCombine] Remove unreachable code for turning an And wh [...]
new d0d13f5774d [InstCombine] Teach SimplifyMultipleUseDemandedBits to hand [...]
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:
.../InstCombine/InstCombineSimplifyDemanded.cpp | 57 +++++++++++++++++-----
1 file changed, 46 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 gcc-6-branch
in repository gcc.
from 5d405c2ac21 2017-04-12 Bill Schmidt <wschmidt(a)linux.vnet.ibm.com>
new 572a6d39e8c PR c++/79461 - ICE with lambda in constexpr constructor
new 6872c6893d2 PR c++/79050 - ICE with undeduced auto and LTO
new 3f2e4c83974 PR c++/79508 - lookup error with member template
new 284f4e567e7 PR c++/79580 - ICE with compound literal
new 73db848361f PR c++/79566 - elaborated-type-specifier in range for
new f38c9ed6f74 PR c++/79607 - ICE with T{} initializer
new 7e4c1105fb6 PR c++/78282 - auto template and pack expansion
new e8d554b35a9 PR c++/80043 - ICE with -fpermissive
new d50223cc919 PR c++/79640 - infinite recursion with generic lambda.
new c777439b250 PR c++/79519 - ICE with deleted template friend.
new 752b2ecc99d PR c++/77563 - missing ambiguous conversion error.
new 68c15c9d33b PR c++/80150 - ICE with overloaded variadic deduction.
The 12 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 | 46 ++++++++++++++++++++++
gcc/cp/call.c | 2 +-
gcc/cp/constexpr.c | 3 ++
gcc/cp/decl.c | 14 +++++--
gcc/cp/parser.c | 15 +++++--
gcc/cp/pt.c | 16 ++++++--
gcc/cp/typeck.c | 7 +++-
gcc/testsuite/g++.dg/cpp0x/deleted13.C | 12 ++++++
gcc/testsuite/g++.dg/cpp0x/range-for34.C | 16 ++++++++
gcc/testsuite/g++.dg/cpp0x/variadic-unify-3.C | 20 ++++++++++
gcc/testsuite/g++.dg/cpp1y/auto-fn36.C | 26 ++++++++++++
gcc/testsuite/g++.dg/cpp1y/lambda-generic-const3.C | 15 +++++++
gcc/testsuite/g++.dg/cpp1z/constexpr-lambda15.C | 9 +++++
gcc/testsuite/g++.dg/ext/complit15.C | 8 ++++
gcc/testsuite/g++.dg/lto/pr79050_0.C | 7 ++++
gcc/testsuite/g++.dg/overload/ambig3.C | 15 +++++++
gcc/testsuite/g++.dg/parse/ptrmem7.C | 16 ++++++++
gcc/testsuite/g++.dg/template/init11.C | 9 +++++
gcc/testsuite/g++.dg/template/memtmpl5.C | 22 +++++++++++
19 files changed, 265 insertions(+), 13 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/deleted13.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/range-for34.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic-unify-3.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn36.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-const3.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda15.C
create mode 100644 gcc/testsuite/g++.dg/ext/complit15.C
create mode 100644 gcc/testsuite/g++.dg/lto/pr79050_0.C
create mode 100644 gcc/testsuite/g++.dg/overload/ambig3.C
create mode 100644 gcc/testsuite/g++.dg/parse/ptrmem7.C
create mode 100644 gcc/testsuite/g++.dg/template/init11.C
create mode 100644 gcc/testsuite/g++.dg/template/memtmpl5.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 2c5adb18ba8 [InstCombine] fix wrong undef handling when converting sele [...]
new 1db7e25e94b [InstCombine] Remove unreachable code for turning an And wh [...]
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/InstCombine/InstCombineSimplifyDemanded.cpp | 4 ----
1 file changed, 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 718593b3f9a CodeGen: BlockPlacement: Add comment about DenseMap Safety.
new c5de42f38f5 [SelectionDAG] Use APInt move assignment to avoid 2 memory [...]
new 2c5adb18ba8 [InstCombine] fix wrong undef handling when converting sele [...]
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:
docs/LangRef.rst | 7 ++++---
lib/CodeGen/SelectionDAG/TargetLowering.cpp | 4 ++--
lib/Transforms/InstCombine/InstCombineSelect.cpp | 6 ++++--
test/Transforms/InstCombine/select.ll | 17 ++++++++++++++---
4 files changed, 24 insertions(+), 10 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 test-suite.
from b1ac6011 [PowerPC] Change -faltivec to -maltivec
new 07a798f9 cmake/cache/xcode_sdk: Add workaround for missing target flag [...]
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/caches/util/arch_flags_toolchain.cmake | 5 +++++
cmake/caches/util/xcode_sdk.cmake | 12 ++++++++++++
2 files changed, 17 insertions(+)
create mode 100644 cmake/caches/util/arch_flags_toolchain.cmake
--
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 1c404b475de llvm-lto2: Add a dump-symtab subcommand.
new 718593b3f9a CodeGen: BlockPlacement: Add comment about DenseMap Safety.
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/MachineBlockPlacement.cpp | 3 +++
1 file changed, 3 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.