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-lts-allmodconfig
in repository toolchain/ci/llvm-monorepo.
from 62368bc223e [MIPS GlobalISel] Select G_SELECT
adds fc692923648 [NFC] Use utility function for guards detection
adds c5a4f2708b3 [AMDGPU] Regenerate i64 shift tests.
adds 91c8df1257b Pass a concrete triple for two OpenMP tests that depend on TLS
adds b2fe5df755e Ignore ConstantExpr in IgnoreParens
adds e1e1965a52a [NVPTX] Allow libcalls that are defined in the current module.
adds 5fa59576a81 Use error() instead of fatal() to report an invalid address range.
adds c7b095054a5 [MS] Mangle return adjusting thunks with the public access [...]
adds 22f192ee127 [clang-cl] Treat inputs as C++ with /E, like MSVC
new 9d5ad48b305 [codeview] Check if this 'this' type of a method is a pointer
new a015ad06390 [LoopIdiomRecognize] Add CTTZ support
new 1cff0694ee2 [WebAssembly] Fix typos in comments in RegStackify (NFC)
new 2584fd96eb3 [WebAssembly] Delete an unnecessary line in RegStackify
new f0a11da6993 manpages: Update the URL for https
new d1a0ebc5597 [WebAssembly] Make assembler check for proper nesting of co [...]
new 9653648cf14 [WebAssembly] Added basic support for if/else/end_if in MC layer.
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:
clang/lib/AST/Expr.cpp | 8 +-
clang/lib/AST/MicrosoftMangle.cpp | 18 +-
clang/lib/Driver/Driver.cpp | 5 +-
clang/test/CodeGenCXX/mangle-ms-templates.cpp | 2 +
.../test/CodeGenCXX/mangle-ms-thunks-covariant.cpp | 29 ++++
clang/test/Driver/cl-idl.cpp | 18 ++
clang/test/OpenMP/declare_reduction_codegen.cpp | 12 +-
clang/test/OpenMP/parallel_copyin_codegen.cpp | 40 ++---
lld/ELF/SyntheticSections.cpp | 22 +--
lld/test/ELF/gdb-index-invalid-ranges.s | 4 +-
llvm/docs/conf.py | 2 +-
llvm/include/llvm/CodeGen/SelectionDAG.h | 7 +
llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h | 3 +
llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 25 ++-
llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 +-
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 26 +++
llvm/lib/MC/MCParser/AsmParser.cpp | 3 +
llvm/lib/Target/NVPTX/CMakeLists.txt | 1 +
llvm/lib/Target/NVPTX/NVPTX.h | 1 +
llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp | 5 +
llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp | 47 +++++-
llvm/lib/Target/NVPTX/NVPTXISelLowering.h | 1 +
llvm/lib/Target/NVPTX/NVPTXInstrInfo.td | 21 ++-
llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp | 122 ++++++++++++++
llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp | 8 +
.../WebAssembly/AsmParser/WebAssemblyAsmParser.cpp | 115 ++++++++++++-
.../Target/WebAssembly/WebAssemblyInstrControl.td | 14 +-
.../Target/WebAssembly/WebAssemblyRegStackify.cpp | 5 +-
llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 149 ++++++++++-------
llvm/lib/Transforms/Scalar/LoopPredication.cpp | 6 +-
llvm/test/CodeGen/AMDGPU/lshl64-to-32.ll | 105 +++++++++---
llvm/test/CodeGen/NVPTX/calls-with-phi.ll | 22 +++
llvm/test/CodeGen/NVPTX/libcall-fulfilled.ll | 31 ++++
llvm/test/CodeGen/NVPTX/libcall-instruction.ll | 4 +-
llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll | 10 ++
llvm/test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll | 25 +++
llvm/test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll | 183 +++++++++++++++++++++
llvm/test/CodeGen/NVPTX/zero-cs.ll | 10 --
llvm/test/DebugInfo/COFF/types-this-not-ptr.ll | 45 +++++
llvm/test/MC/WebAssembly/basic-assembly-errors.s | 25 +++
llvm/test/MC/WebAssembly/basic-assembly.s | 10 ++
llvm/test/MC/WebAssembly/simd-encodings.s | 3 +
llvm/test/Transforms/LoopIdiom/X86/cttz.ll | 82 +++++++++
43 files changed, 1098 insertions(+), 178 deletions(-)
create mode 100644 clang/test/CodeGenCXX/mangle-ms-thunks-covariant.cpp
create mode 100644 clang/test/Driver/cl-idl.cpp
create mode 100644 llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
create mode 100644 llvm/test/CodeGen/NVPTX/calls-with-phi.ll
create mode 100644 llvm/test/CodeGen/NVPTX/libcall-fulfilled.ll
create mode 100644 llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll
create mode 100644 llvm/test/CodeGen/NVPTX/proxy-reg-erasure-mir.ll
create mode 100644 llvm/test/CodeGen/NVPTX/proxy-reg-erasure-ptx.ll
delete mode 100644 llvm/test/CodeGen/NVPTX/zero-cs.ll
create mode 100644 llvm/test/DebugInfo/COFF/types-this-not-ptr.ll
create mode 100644 llvm/test/MC/WebAssembly/basic-assembly-errors.s
create mode 100644 llvm/test/Transforms/LoopIdiom/X86/cttz.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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-lts-allmodconfig
in repository toolchain/ci/base-artifacts.
discards cbb572ab1 llvm-62368bc223ee43fe986c0e3e8185538c7da3799f: 16
new fdd1d203d llvm-9653648cf14911cbc9307b49a6a398856370d1f4: 16
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 (cbb572ab1)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-master-arm-l [...]
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:
1-reset_artifacts/console.log | 154 +-
2-build_llvm/console.log | 8843 +++++++++++++++++++-------------------
3-count_linux_objs/console.log | 102 +-
console.log | 9097 ++++++++++++++++++++--------------------
distance-to-baseline | 2 +-
jenkins/build-name | 2 +-
jenkins/manifest.sh | 6 +-
trigger-bisect-on-failure | 4 +-
8 files changed, 9048 insertions(+), 9162 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-mainline-allnoconfig
in repository toolchain/ci/base-artifacts.
discards 15ae8f95c llvm-5fa59576a8133b2d8682af53921820873e35bc10: all
new 2129c300b linux-17bf423a1f2d134187191f0ceb4b395173cc98a7: all
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 (15ae8f95c)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-master-arm-m [...]
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:
1-reset_artifacts/console.log | 54 +-
2-build_llvm/console.log | 10022 +++++++++++++++++++-------------------
3-count_linux_objs/console.log | 147 +-
4-check_regression/console.log | 2 +-
5-update_baseline/console.log | 4 +-
console.log | 10229 +++++++++++++++++++--------------------
distance-to-baseline | 2 +-
jenkins/build-name | 2 +-
jenkins/manifest.sh | 10 +-
trigger-bisect-on-failure | 6 +-
10 files changed, 10238 insertions(+), 10240 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-aarch64-mainline-allmodconfig
in repository toolchain/ci/base-artifacts.
discards cee317a3c llvm-fc6929236484232f3ec0026bcba5622eedb060f7: 17748
new 035a5956e linux-eed9688f8513189295887e5a27ec7f576754b60e: 17841
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 (cee317a3c)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-master-aarch [...]
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:
1-reset_artifacts/console.log | 216 +-
2-build_llvm/console.log | 9192 +++++++++--------
3-count_linux_objs/console.log | 2695 +++--
4-check_regression/console.log | 8 +-
5-update_baseline/console.log | 8 +-
console.log | 20851 +++++++++++++++++++--------------------
distance-to-baseline | 2 +-
jenkins/build-name | 2 +-
jenkins/manifest.sh | 10 +-
results | 2 +-
trigger-bisect-on-failure | 6 +-
11 files changed, 15929 insertions(+), 17063 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-arm-stable-allmodconfig
in repository toolchain/gcc.
from ac6a3935c7d Daily bump.
adds e1d80300140 Daily bump.
No new revisions were added by this update.
Summary of changes:
gcc/DATESTAMP | 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-arm-stable-allmodconfig
in repository toolchain/ci/base-artifacts.
discards a3941e825 binutils-2c06f598ea55f3b45e4ff28dea8e831e4e9359ed: all
new 9990a6be9 gcc-e1d803001400ed6c80c218e2a0999443a6ea2472: all
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 (a3941e825)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/gnu-release-arm-s [...]
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:
1-reset_artifacts/console.log | 116 +-
3-build_abe-binutils/console.log | 3534 ++++++++-------
4-build_abe-stage1/console.log | 4177 ++++++++---------
5-count_linux_objs/console.log | 1276 +++---
console.log | 9159 +++++++++++++++++++-------------------
jenkins/build-name | 2 +-
jenkins/manifest.sh | 10 +-
trigger-bisect-on-failure | 6 +-
8 files changed, 8963 insertions(+), 9317 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-aarch64-mainline-allnoconfig
in repository toolchain/ci/base-artifacts.
from c43130880 linux-66f16a24512fa44680504effe908df8326885594: 433
new 4e8c33d9f linux-17bf423a1f2d134187191f0ceb4b395173cc98a7: 434
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:
1-reset_artifacts/console.log | 128 +-
2-build_llvm/console.log | 9645 ++++++++++++++++++-------------------
3-count_linux_objs/console.log | 194 +-
4-check_regression/console.log | 17 +-
5-update_baseline/console.log | 34 +-
console.log | 10018 ++++++++++++++++++++-------------------
distance-to-baseline | 2 +-
jenkins/build-name | 2 +-
jenkins/manifest.sh | 10 +-
results | 2 +-
trigger-bisect-on-failure | 4 +-
11 files changed, 10106 insertions(+), 9950 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.