This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-7-branch
in repository gcc.
from 13e6ee4dec2 Daily bump.
new c59b216e8f3 Daily bump.
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/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_bmk/llvm-release-arm-spec2k6-Os
in repository toolchain/ci/base-artifacts.
discards 3ca0d2e1 0: update: glibc-dcd2b97dd1d695445d45beb4daa815cfe06691dd: 0
new 9e2f63ee 0: update: llvm-047302e0421983914e90efdf6bbaeba60a653803: 0
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 (3ca0d2e1)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_bmk/llvm-release-arm-spe [...]
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 | 219 +-
02-prepare_abe/console.log | 260 +-
03-build_abe-binutils/console.log | 10196 +--
04-build_abe-stage1/console.log | 16967 ++---
05-build_abe-linux/console.log | 284 +-
06-build_abe-glibc/console.log | 37462 ++++++-----
07-build_abe-stage2/console.log | 46100 ++++++-------
08-build_llvm-true/console.log | 11629 ++--
09-benchmark/benchmark.log | 16 +-
09-benchmark/console.log | 166 +-
10-check_regression/console.log | 218 +-
11-update_baseline/console.log | 202 +-
console.log | 124531 ++++++++++++++++++-----------------
jenkins/manifest.sh | 8 +-
results.csv | 16 +-
results_id | 2 +-
16 files changed, 124227 insertions(+), 124049 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-arm-next-defconfig
in repository toolchain/ci/base-artifacts.
discards 9294dc34 0: update: binutils-gcc-linux: boot
new 70d12b55 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 (9294dc34)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/gnu-master-arm-ne [...]
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-prepare_abe/console.log | 172 +-
03-build_abe-binutils/console.log | 10135 ++++++------
04-build_abe-stage1/console.log | 19088 +++++++++++----------
05-build_linux/console.log | 2129 +--
06-boot_linux/console.log | 474 +-
console.log | 32145 ++++++++++++++++++------------------
jenkins/manifest.sh | 16 +-
results | 2 +-
9 files changed, 32097 insertions(+), 32080 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 07bbdf45645 [Lint] Permit aliasing noalias readonly arguments
new 04dcbb51652 [Remarks] Add string deduplication using a string table
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/CodeGenerator.rst | 4 +
include/llvm/IR/RemarkStreamer.h | 11 ++-
include/llvm/Remarks/RemarkParser.h | 18 +++++
include/llvm/Remarks/RemarkStringTable.h | 59 ++++++++++++++
include/llvm/Support/YAMLTraits.h | 5 ++
lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 23 ++++++
lib/CodeGen/AsmPrinter/LLVMBuild.txt | 2 +-
lib/IR/DiagnosticInfo.cpp | 57 +++++++++++---
lib/IR/LLVMBuild.txt | 2 +-
lib/IR/RemarkStreamer.cpp | 2 +-
lib/Remarks/CMakeLists.txt | 1 +
lib/Remarks/RemarkParser.cpp | 28 +++++++
lib/Remarks/RemarkStringTable.cpp | 48 ++++++++++++
lib/Remarks/YAMLRemarkParser.cpp | 14 +++-
lib/Remarks/YAMLRemarkParser.h | 15 ++--
test/CodeGen/X86/remarks-section.ll | 46 +++++++++++
unittests/Remarks/CMakeLists.txt | 1 +
unittests/Remarks/RemarksStrTabParsingTest.cpp | 39 ++++++++++
unittests/Remarks/YAMLRemarksParsingTest.cpp | 102 +++++++++++++++++++++++++
19 files changed, 456 insertions(+), 21 deletions(-)
create mode 100644 include/llvm/Remarks/RemarkStringTable.h
create mode 100644 lib/Remarks/RemarkStringTable.cpp
create mode 100644 unittests/Remarks/RemarksStrTabParsingTest.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 lldb.
from 4cf4c5487 Lock accesses to OptionValueFileSpecList objects
new bfe35c3db [Docs] Fix link to C++ docs
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/.htaccess | 2 ++
docs/index.rst | 3 +--
2 files changed, 3 insertions(+), 2 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 clang.
from 3c6b6a7598 Improve -Wuninitialized warning under ARC for block variable [...]
new 01f976def1 Add missing diagnostic for anonymous struct/union definition [...]
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/Sema/SemaDecl.cpp | 12 ++++++++++++
test/Analysis/unions.cpp | 2 +-
test/CXX/class/class.union/class.union.anon/p4.cpp | 2 +-
test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/p4.cpp | 4 ++--
test/CXX/drs/dr13xx.cpp | 2 +-
test/CXX/drs/dr14xx.cpp | 16 ++++++++--------
test/CXX/drs/dr19xx.cpp | 1 +
test/CXX/module/module.interface/p3.cpp | 6 +++---
test/SemaCXX/anonymous-struct.cpp | 4 ++--
test/SemaCXX/anonymous-union.cpp | 2 +-
test/SemaCXX/constant-expression-cxx11.cpp | 2 +-
test/SemaCXX/cxx0x-deleted-default-ctor.cpp | 14 +++++++-------
12 files changed, 40 insertions(+), 27 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.