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 5a61febc0 [libFuzzer] split DataFlow.cpp into two .cpp files, one of wh [...]
new 9dd9e56a9 [asan] Avoid two compiler-synthesized calls to memset & memcpy
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/asan/asan_globals.cc | 7 ++-----
lib/sanitizer_common/sanitizer_symbolizer_win.cc | 3 +++
2 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 llvm.
from 6e11f192fc5 [InstCombine] cttz(abs(x)) -> cttz(x)
new 0705bbc6fe3 Fix MSVC "result of 32-bit shift implicitly converted to 64 [...]
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/ARM/Disassembler/ARMDisassembler.cpp | 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 clang.
from cea41a9fb1 [clang][NewPM] Add -fno-experimental-new-pass-manager to tests
new 4089ba457f Print more type node information when dumping the AST to JSON.
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/JSONNodeDumper.h | 3 +
lib/AST/JSONNodeDumper.cpp | 20 +++
test/AST/ast-dump-types-json.cpp | 358 +++++++++++++++++++++++++++++++++++++
3 files changed, 381 insertions(+)
create mode 100644 test/AST/ast-dump-types-json.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.
from 49034bc138 [OPENMP]Fix PR42159: do not capture threadprivate variables.
new cea41a9fb1 [clang][NewPM] Add -fno-experimental-new-pass-manager to 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:
test/CodeGen/aggregate-assign-call.c | 45 ++++++++--------
test/CodeGen/arm_acle.c | 66 +++++++++++++----------
test/CodeGen/cspgo-instrumentation.c | 8 +--
test/CodeGen/cspgo-instrumentation_lto.c | 8 +--
test/CodeGen/cspgo-instrumentation_thinlto.c | 8 +--
test/CodeGen/pgo-instrumentation.c | 8 +--
test/CodeGen/thinlto-debug-pm.c | 4 +-
test/CodeGenCXX/auto-var-init.cpp | 25 ++++++---
test/CodeGenCXX/conditional-temporaries.cpp | 26 ++++++---
test/CodeGenCXX/member-function-pointer-calls.cpp | 10 +++-
test/CodeGenObjC/os_log.m | 12 +++--
test/CodeGenObjCXX/os_log.mm | 4 +-
test/Misc/pr32207.c | 2 +-
13 files changed, 135 insertions(+), 91 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 libcxx.
from 3f1001890 Make move and forward work in C++03.
new 59c47a942 Use rvalue references throughout the is_constructible traits.
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/type_traits | 150 +--------------------
.../meta.unary.prop/is_move_assignable.pass.cpp | 3 +-
.../meta.unary.prop/is_move_constructible.pass.cpp | 2 -
.../is_nothrow_destructible.pass.cpp | 4 +-
4 files changed, 6 insertions(+), 153 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 d7942535465 [GVNSink] prevent crashing on mismatched instructions (PR42346)
new 6e11f192fc5 [InstCombine] cttz(abs(x)) -> cttz(x)
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/InstCombineCalls.cpp | 19 ++++++++---
test/Transforms/InstCombine/cttz-abs.ll | 42 ++++++-------------------
2 files changed, 25 insertions(+), 36 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 b95193a53ad [NFC] Added tests for (1 << (C - x)) -> ((1 << C) >> x)
new d7942535465 [GVNSink] prevent crashing on mismatched instructions (PR42346)
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/Scalar/GVNSink.cpp | 9 ++++++++
test/Transforms/GVNSink/operand-mismatch.ll | 34 +++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
create mode 100644 test/Transforms/GVNSink/operand-mismatch.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 libcxx.
from 3d80477aa Enable aligned_union in C++03
new 3f1001890 Make move and forward work in C++03.
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/algorithm | 4 --
include/exception | 8 ---
include/forward_list | 6 ---
include/memory | 42 ++++-----------
include/type_traits | 43 ----------------
.../func.require/bullet_4_5_6.pass.cpp | 4 ++
.../std/utilities/utility/forward/forward.fail.cpp | 6 ---
.../std/utilities/utility/forward/forward.pass.cpp | 28 +++++-----
.../utilities/utility/forward/forward_03.pass.cpp | 59 ----------------------
test/std/utilities/utility/forward/move.fail.cpp | 13 +++--
test/std/utilities/utility/forward/move.pass.cpp | 19 +++----
.../utility/forward/move_if_noexcept.pass.cpp | 6 +--
12 files changed, 43 insertions(+), 195 deletions(-)
delete mode 100644 test/std/utilities/utility/forward/forward_03.pass.cpp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.