This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 5a370c1ad84 [LoopVectorize][X86] Clamp interleave factor if we have a k [...]
new 4575679a86e Revert Added Delta IR Reduction Tool
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/BugpointRedesign.md | 105 --------------
test/Reduce/Inputs/remove-funcs.sh | 10 --
test/Reduce/remove-funcs.ll | 34 -----
tools/LLVMBuild.txt | 1 -
tools/llvm-reduce/CMakeLists.txt | 24 ----
tools/llvm-reduce/DeltaManager.h | 25 ----
tools/llvm-reduce/LLVMBuild.txt | 24 ----
tools/llvm-reduce/TestRunner.cpp | 60 --------
tools/llvm-reduce/TestRunner.h | 56 --------
tools/llvm-reduce/deltas/Delta.cpp | 203 ---------------------------
tools/llvm-reduce/deltas/Delta.h | 89 ------------
tools/llvm-reduce/deltas/ReduceFunctions.cpp | 80 -----------
tools/llvm-reduce/deltas/ReduceFunctions.h | 20 ---
tools/llvm-reduce/llvm-reduce.cpp | 105 --------------
14 files changed, 836 deletions(-)
delete mode 100644 docs/BugpointRedesign.md
delete mode 100755 test/Reduce/Inputs/remove-funcs.sh
delete mode 100644 test/Reduce/remove-funcs.ll
delete mode 100644 tools/llvm-reduce/CMakeLists.txt
delete mode 100644 tools/llvm-reduce/DeltaManager.h
delete mode 100644 tools/llvm-reduce/LLVMBuild.txt
delete mode 100644 tools/llvm-reduce/TestRunner.cpp
delete mode 100644 tools/llvm-reduce/TestRunner.h
delete mode 100644 tools/llvm-reduce/deltas/Delta.cpp
delete mode 100644 tools/llvm-reduce/deltas/Delta.h
delete mode 100644 tools/llvm-reduce/deltas/ReduceFunctions.cpp
delete mode 100644 tools/llvm-reduce/deltas/ReduceFunctions.h
delete mode 100644 tools/llvm-reduce/llvm-reduce.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 compiler-rt.
from 1da587220 Require lld for hwasan tests.
new bbac28b10 [HWASan] Use LLD for check-hwasan.
new cb1c835da Restrict the NetBSD ASan TSD fallback to !ASAN_DYNAMIC
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:
lib/asan/asan_posix.cpp | 4 ++--
test/hwasan/lit.cfg.py | 2 +-
2 files changed, 3 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 c2ab705011f Added Delta IR Reduction Tool
new 5a370c1ad84 [LoopVectorize][X86] Clamp interleave factor if we have a k [...]
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/Vectorize/LoopVectorize.cpp | 10 +++++-
test/Transforms/LoopVectorize/X86/pr42674.ll | 50 +++++++++++++++++++---------
2 files changed, 44 insertions(+), 16 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 24d7d907f [libc++] Take 3: Do not cleverly link against libc++abi just [...]
new c9fa99a44 [libc++] Remove temporary hack for D63883
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 | 10 ----------
1 file changed, 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 llvm.
from 5e6b7a83c29 [NFC][LICM] Pre-commit test for unary FNeg support in LICM.
new b5de9a3fcc8 DebugInfo/DWARF: Remove unused return type from DWARFUnit:: [...]
new c2ab705011f Added Delta IR Reduction Tool
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/BugpointRedesign.md | 105 ++++++++++++++
include/llvm/DebugInfo/DWARF/DWARFUnit.h | 4 +-
lib/DebugInfo/DWARF/DWARFUnit.cpp | 127 +++++++++--------
test/Reduce/Inputs/remove-funcs.sh | 10 ++
test/Reduce/remove-funcs.ll | 34 +++++
tools/LLVMBuild.txt | 1 +
tools/llvm-reduce/CMakeLists.txt | 24 ++++
tools/llvm-reduce/DeltaManager.h | 25 ++++
tools/{ => llvm-reduce}/LLVMBuild.txt | 53 ++-----
tools/llvm-reduce/TestRunner.cpp | 60 ++++++++
tools/llvm-reduce/TestRunner.h | 56 ++++++++
tools/llvm-reduce/deltas/Delta.cpp | 203 +++++++++++++++++++++++++++
tools/llvm-reduce/deltas/Delta.h | 89 ++++++++++++
tools/llvm-reduce/deltas/ReduceFunctions.cpp | 80 +++++++++++
tools/llvm-reduce/deltas/ReduceFunctions.h | 20 +++
tools/llvm-reduce/llvm-reduce.cpp | 105 ++++++++++++++
16 files changed, 885 insertions(+), 111 deletions(-)
create mode 100644 docs/BugpointRedesign.md
create mode 100755 test/Reduce/Inputs/remove-funcs.sh
create mode 100644 test/Reduce/remove-funcs.ll
create mode 100644 tools/llvm-reduce/CMakeLists.txt
create mode 100644 tools/llvm-reduce/DeltaManager.h
copy tools/{ => llvm-reduce}/LLVMBuild.txt (50%)
create mode 100644 tools/llvm-reduce/TestRunner.cpp
create mode 100644 tools/llvm-reduce/TestRunner.h
create mode 100644 tools/llvm-reduce/deltas/Delta.cpp
create mode 100644 tools/llvm-reduce/deltas/Delta.h
create mode 100644 tools/llvm-reduce/deltas/ReduceFunctions.cpp
create mode 100644 tools/llvm-reduce/deltas/ReduceFunctions.h
create mode 100644 tools/llvm-reduce/llvm-reduce.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 libcxx.
from af16e881a [pstl][libc++] Provide uglified header names for interface headers
new 24d7d907f [libc++] Take 3: Do not cleverly link against libc++abi just [...]
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 | 13 -------------
cmake/Modules/HandleLibCXXABI.cmake | 2 +-
2 files changed, 1 insertion(+), 14 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 gcc.
from c50bde22a1c [AArch64] Fix INSR for zero floats
new 8823710c7f0 PR c++/67533 * g++.dg/tls/thread_local-ice5.C: New test.
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/testsuite/ChangeLog | 5 +++++
gcc/testsuite/g++.dg/tls/thread_local-ice5.C | 7 +++++++
2 files changed, 12 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/tls/thread_local-ice5.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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-next-allmodconfig
in repository toolchain/ci/base-artifacts.
discards 569081c0 0: update: llvm-linux: 19677
new 6401dcae 0: update: llvm-linux: 19680
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (569081c0)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-master-arm-n [...]
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
01-reset_artifacts/console.log | 16 +-
02-build_llvm/console.log | 12033 ++++++++++++++++++-----------------
03-build_linux/console.log | 955 ++-
05-check_regression/console.log | 10 +-
06-update_baseline/console.log | 28 +
console.log | 13042 +++++++++++++++++++-------------------
jenkins/manifest.sh | 12 +-
results | 2 +-
8 files changed, 12993 insertions(+), 13105 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.