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-next-allnoconfig
in repository toolchain/ci/base-artifacts.
discards 92e951b 0: good: llvm-linux: all
new 64a0790 0: good: llvm-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 (92e951b)
\
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:
1-reset_artifacts/console.log | 14 +-
2-build_llvm/console.log | 9312 ++++++++++++++++++++--------------------
3-build_linux/console.log | 76 +-
4-boot_linux/console.log | 2 +-
console.log | 9404 ++++++++++++++++++++---------------------
jenkins/manifest.sh | 10 +-
6 files changed, 9381 insertions(+), 9437 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 bbe4f9c7c57 [MC][MachO] Emit an error for emitting relocations of the f [...]
new 005ab1287ab [PPC] Adjust the computed branch offset for the possible sh [...]
new a5acf6e4858 [InstCombine] Fold add nsw + sadd.with.overflow
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/Target/PowerPC/PPCBranchSelector.cpp | 84 +++++++++++++++++++++--
lib/Transforms/InstCombine/InstCombineCalls.cpp | 50 +++++++++++---
lib/Transforms/InstCombine/InstCombineInternal.h | 2 +
test/CodeGen/PowerPC/branch_selector.ll | 45 ++++++++++++
test/Transforms/InstCombine/sadd-with-overflow.ll | 38 +++++-----
5 files changed, 187 insertions(+), 32 deletions(-)
create mode 100644 test/CodeGen/PowerPC/branch_selector.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 lldb.
from 2c4669267 Fix core files for 32 bit architectures that are supported in [...]
new 899239826 Resubmit "Don't include UnixSignals.h from Host."
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/lldb/Host/Host.h | 2 --
include/lldb/Symbol/LocateSymbolFile.h | 5 ++++-
include/lldb/Target/Platform.h | 2 +-
include/lldb/Target/UnixSignals.h | 1 +
source/Host/common/Host.cpp | 7 -------
.../Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp | 2 +-
source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 6 +++++-
source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp | 5 ++++-
source/Symbol/LocateSymbolFile.cpp | 9 +++++----
source/Target/Platform.cpp | 4 ++--
source/Target/UnixSignals.cpp | 7 +++++++
unittests/Symbol/LocateSymbolFileTest.cpp | 9 +++++++--
12 files changed, 37 insertions(+), 22 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 binutils-gdb.
from 912ebfa0d7 Allow the use of the ORIGIN and LENGTH attributes in express [...]
new 84ec972406 gdb/fortran: Remove some duplicate tests
new dd9f2c763b gdb/fortran: Cleanup code for parsing logical constants
new c8f9160408 gdb/fortran: Simplify handling of Fortran dot operations and [...]
new 9dad4a58a1 gdb/fortran: Add new function to evaluate Fortran expressions
new e454224fa8 gdb/fortran: Enable debugging of the Fortran parser
new 4d00f5d8f6 gdb/fortran: Add Fortran 'kind' intrinsic and keyword
new 3be47f7aa9 gdb/fortran: Expand the set of types that support (kind=N)
new 067630bdb5 gdb/fortran: Add builtin 8-byte integer type with (kind=8) support
new 4a270568d9 gdb/fortran: Use TYPE_CODE_CHAR for character types
new 0841c79a3d gdb/fortran: Add support for the ABS intrinsic function
new efbecbc143 gdb/fortran: Handle older TYPE*SIZE typenames
The 11 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:
gdb/ChangeLog | 76 ++++++
gdb/expprint.c | 1 +
gdb/f-exp.y | 256 +++++++++++++++------
gdb/f-lang.c | 102 +++++++-
gdb/f-lang.h | 1 +
gdb/parse.c | 1 +
gdb/parser-defs.h | 3 +-
gdb/std-operator.def | 1 +
gdb/testsuite/ChangeLog | 43 ++++
gdb/testsuite/gdb.fortran/dot-ops.exp | 123 ++++++++++
.../gdb.fortran/{logical.exp => intrinsics.exp} | 34 ++-
.../gdb.fortran/{logical.f90 => intrinsics.f90} | 17 +-
gdb/testsuite/gdb.fortran/type-kinds.exp | 98 ++++++++
gdb/testsuite/gdb.fortran/types.exp | 9 +-
14 files changed, 675 insertions(+), 90 deletions(-)
create mode 100644 gdb/testsuite/gdb.fortran/dot-ops.exp
copy gdb/testsuite/gdb.fortran/{logical.exp => intrinsics.exp} (54%)
copy gdb/testsuite/gdb.fortran/{logical.f90 => intrinsics.f90} (81%)
create mode 100644 gdb/testsuite/gdb.fortran/type-kinds.exp
--
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-stable-defconfig
in repository toolchain/ci/base-artifacts.
discards 7333726 0: good: llvm-linux: boot
new 1b4be73 0: good: llvm-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 (7333726)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/llvm-master-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 | 68 +-
2-build_llvm/console.log | 10417 ++++++++++++++++++-------------------
3-build_linux/console.log | 100 +-
4-boot_linux/console.log | 386 +-
5-check_regression/console.log | 2 +-
6-update_baseline/console.log | 4 +-
console.log | 10977 +++++++++++++++++++--------------------
jenkins/manifest.sh | 10 +-
8 files changed, 10927 insertions(+), 11037 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_bmk/llvm-release-aarch64-spec2k6-Os
in repository toolchain/ci/base-artifacts.
discards 05fd721 0: good: llvm-d39b590a4123aadff60a1b5c808fae6ab7cea362: -1
new fdeac5a 0: good: llvm-d39b590a4123aadff60a1b5c808fae6ab7cea362: -10
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 (05fd721)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_bmk/llvm-release-aarch64 [...]
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 | 60 +-
02-build_llvm/console.log | 5668 ------------------
02-prepare_abe/console.log | 184 +
03-benchmark/benchmark.log | 62 -
03-benchmark/console.log | 181 -
03-build_abe-binutils/console.log | 107 +
.../console.log | 0
.../console.log | 2 +-
console.log | 6046 +-------------------
jenkins/manifest.sh | 9 +-
results | 2 -
11 files changed, 569 insertions(+), 11752 deletions(-)
delete mode 100644 02-build_llvm/console.log
create mode 100644 02-prepare_abe/console.log
delete mode 100644 03-benchmark/benchmark.log
delete mode 100644 03-benchmark/console.log
create mode 100644 03-build_abe-binutils/console.log
rename {04-check_regression => 10-check_regression}/console.log (100%)
rename {05-update_baseline => 11-update_baseline}/console.log (89%)
--
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 b642ee29435 [Hexagon] Avoid creating 5-instruction packets with vgather [...]
new bbe4f9c7c57 [MC][MachO] Emit an error for emitting relocations of the f [...]
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/MC/MachObjectWriter.cpp | 15 +++++++++++++++
test/MC/MachO/bad-reloc.s | 5 +++++
2 files changed, 20 insertions(+)
create mode 100644 test/MC/MachO/bad-reloc.s
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.