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-aarch64-lts-allyesconfig
in repository toolchain/ci/binutils-gdb.
from b9414a8064 gas, arm: Fix bad backport
adds 47bb520720 Fix tight loop on recursively-defined symbols
adds 3730a015c0 Re: Fix tight loop on recursively-defined symbols
No new revisions were added by this update.
Summary of changes:
gas/ChangeLog | 18 ++++++++++++++++++
gas/symbols.c | 19 ++++++++++++++++---
gas/testsuite/gas/all/assign-bad-recursive.d | 4 ++++
gas/testsuite/gas/all/assign-bad-recursive.l | 7 +++++++
gas/testsuite/gas/all/assign-bad-recursive.s | 8 ++++++++
gas/testsuite/gas/all/gas.exp | 1 +
6 files changed, 54 insertions(+), 3 deletions(-)
create mode 100644 gas/testsuite/gas/all/assign-bad-recursive.d
create mode 100644 gas/testsuite/gas/all/assign-bad-recursive.l
create mode 100644 gas/testsuite/gas/all/assign-bad-recursive.s
--
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-aarch64-lts-allyesconfig
in repository toolchain/ci/base-artifacts.
discards a56b14ad5 0: update: binutils-gcc-linux: all
new f2f7c673f 0: update: binutils-gcc-linux: 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 (a56b14ad5)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/gnu-release-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:
01-reset_artifacts/console.log | 220 +-
02-prepare_abe/console.log | 402 +-
03-build_abe-binutils/console.log | 11734 ++++++-------
04-build_abe-stage1/console.log | 13460 ++++++++-------
05-build_linux/console.log | 770 +-
06-boot_linux/console.log | 6 +-
07-check_regression/console.log | 18 +-
07-check_regression/results.regressions | 2 +-
08-update_baseline/console.log | 18 +-
08-update_baseline/results.regressions | 2 +-
console.log | 26628 +++++++++++++++---------------
jenkins/manifest.sh | 17 +-
12 files changed, 26638 insertions(+), 26639 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-arm-lts-allmodconfig
in repository toolchain/ci/llvm-project.
from eaae6dfc545 [CodeGen] fix inline builtin-related breakage from D78162
new aba4e3fa3bd [lldb] [PECOFF] Only use PECallFrameInfo on the one support [...]
new 964da818556 PR45350: Handle unsized array CXXConstructExprs in constant [...]
new bf1f5caf202 CET for Exception Handle
new 4a89d0de5e9 Enable IBT(Indirect Branch Tracking) in JIT with CET(Contro [...]
new bace7beb530 Backport 4878aa36d4a [ValueLattice] Add new state for undef [...]
new d9160ff3e92 [globalopt] Don't emit DWARF fragments for members of a str [...]
The 6 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/ExprConstant.cpp | 23 +-
clang/test/SemaCXX/constant-expression-cxx2a.cpp | 20 ++
.../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 3 +
llvm/include/llvm/Analysis/ValueLattice.h | 162 +++++----
llvm/lib/Analysis/LazyValueInfo.cpp | 12 +-
llvm/lib/Analysis/ValueLattice.cpp | 6 +-
llvm/lib/Target/X86/X86IndirectBranchTracking.cpp | 34 +-
llvm/lib/Target/X86/X86TargetMachine.cpp | 2 +-
llvm/lib/Target/X86/X86TargetMachine.h | 4 +
llvm/lib/Transforms/IPO/GlobalOpt.cpp | 16 +-
.../X86/indirect-branch-tracking-cm-lager.ll | 36 ++
.../CodeGen/X86/indirect-branch-tracking-eh.ll | 31 ++
.../Generic/global-sra-struct-zero-length.ll | 69 ++++
.../merge-range-and-undef.ll | 299 ++++++++++++++++
llvm/test/Transforms/JumpThreading/ne-undef.ll | 61 ++++
llvm/test/Transforms/SCCP/float-phis.ll | 26 ++
llvm/test/Transforms/SCCP/int-phis.ll | 61 ++++
llvm/test/Transforms/SCCP/range-and-ip.ll | 47 +++
llvm/test/Transforms/SCCP/range-and.ll | 395 +++++++++++++++++++++
llvm/unittests/Analysis/ValueLatticeTest.cpp | 17 +
20 files changed, 1240 insertions(+), 84 deletions(-)
create mode 100644 llvm/test/CodeGen/X86/indirect-branch-tracking-cm-lager.ll
create mode 100644 llvm/test/CodeGen/X86/indirect-branch-tracking-eh.ll
create mode 100644 llvm/test/DebugInfo/Generic/global-sra-struct-zero-length.ll
create mode 100644 llvm/test/Transforms/CorrelatedValuePropagation/merge-range-and [...]
create mode 100644 llvm/test/Transforms/JumpThreading/ne-undef.ll
create mode 100644 llvm/test/Transforms/SCCP/float-phis.ll
create mode 100644 llvm/test/Transforms/SCCP/int-phis.ll
create mode 100644 llvm/test/Transforms/SCCP/range-and-ip.ll
create mode 100644 llvm/test/Transforms/SCCP/range-and.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-release-arm-lts-allmodconfig
in repository toolchain/ci/base-artifacts.
discards 11379e190 0: update: llvm-linux: 16
new d69fc15bf 0: update: llvm-linux: 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 (11379e190)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-release-arm- [...]
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 | 102 +-
02-build_llvm/console.log | 12560 +++++++++++++--------------
03-build_linux/console.log | 778 +-
05-check_regression/console.log | 16 +-
05-check_regression/results.regressions | 20 +-
06-update_baseline/console.log | 41 +
06-update_baseline/results.regressions | 20 +-
console.log | 13495 +++++++++++++++---------------
jenkins/manifest.sh | 12 +-
9 files changed, 13570 insertions(+), 13474 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-master-aarch64-next-defconfig
in repository toolchain/ci/binutils-gdb.
from e52a0f1bd9 Avoid short i386 register names on Solaris/x86 [PR25981]
adds 3ecde59918 Automatic date update in version.in
new 39a1432c09 win32 typo fix
new 0e1d094e96 Clear all local_symbol.lsy_flags
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:
bfd/ChangeLog | 5 +++++
bfd/bfdio.c | 2 +-
bfd/version.h | 2 +-
gas/ChangeLog | 4 ++++
gas/symbols.c | 4 ++--
5 files changed, 13 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 devel/autopar_devel
in repository gcc.
from 25fe3462fc2 Handle `as' calls when splitting asm output.
new ce9f7bcf247 Queue up additional call to ld
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 | 13 ++
gcc/gcc.c | 704 +++++++++++++++++++++++++++++++++++-----------------------
2 files changed, 443 insertions(+), 274 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-master-aarch64-next-defconfig
in repository toolchain/ci/base-artifacts.
discards 3d510994a 0: update: binutils-gcc-linux: boot
new 62c2247e7 0: update: binutils-gcc-linux: boot
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 (3d510994a)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/gnu-master-aarch6 [...]
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 | 119 +-
02-prepare_abe/console.log | 96 +-
03-build_abe-binutils/console.log | 11648 ++++++------
04-build_abe-stage1/console.log | 15800 ++++++++--------
05-build_linux/console.log | 676 +-
06-boot_linux/console.log | 482 +-
07-check_regression/console.log | 32 +-
07-check_regression/results.regressions | 3 +-
08-update_baseline/console.log | 18 +-
08-update_baseline/results.regressions | 3 +-
console.log | 28881 +++++++++++++++---------------
jenkins/manifest.sh | 15 +-
12 files changed, 28815 insertions(+), 28958 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-next-allmodconfig
in repository toolchain/ci/base-artifacts.
discards 13044586e 0: update: llvm-linux: all
new 3c9d6bea3 0: update: llvm-3e315697ac7c0df0715a801f5f85b1482f71a55c: 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 (13044586e)
\
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 | 175 +-
02-build_llvm/console.log | 12914 +++++++++++++++++------------------
03-build_linux/console.log | 702 +-
04-boot_linux/console.log | 2 +-
05-check_regression/console.log | 2 +-
06-update_baseline/console.log | 2 +-
console.log | 13797 +++++++++++++++++++-------------------
jenkins/manifest.sh | 15 +-
8 files changed, 13676 insertions(+), 13933 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.