This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from f991e38 [SimplifyCFG] Change the algorithm in SinkThenElseCodeToEnd
new 89ea36c [IR] Properly handle escape characters in Attribute::getAsString()
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/llvm/ADT/StringExtras.h | 5 +++++
lib/IR/AsmWriter.cpp | 4 +---
lib/IR/Attributes.cpp | 16 ++++++++++++----
3 files changed, 18 insertions(+), 7 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 1c02615 Fix more bogus testsuite failures for avr.
new 156b069 This patch adds legitimize_address_displacement hook so that [...]
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 | 6 ++++++
gcc/config/aarch64/aarch64.c | 22 ++++++++++++++++++++++
2 files changed, 28 insertions(+)
--
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 gcc-6-branch
in repository gcc.
from 378bfb8 Backported from mainline 2016-08-16 Jakub Jelinek <jakub@ [...]
new 4683d2d Backported from mainline 2016-08-17 Jakub Jelinek <jakub@ [...]
new 2e76259 Backported from mainline 2016-08-19 Jakub Jelinek <jakub@ [...]
new 16a036c Backported from mainline 2016-08-19 Jakub Jelinek <jakub@ [...]
new 705a2e5 Backported from mainline 2016-08-19 Jakub Jelinek <jakub@ [...]
new 7d28f97 Backported from mainline 2016-08-19 Jakub Jelinek <jakub@ [...]
new c40a61f Backported from mainline 2016-08-30 Jakub Jelinek <jakub@ [...]
new 56762ff Backported from mainline 2016-08-30 Jakub Jelinek <jakub@ [...]
new 1bb2f23 Backported from mainline 2016-08-30 Jakub Jelinek <jakub@ [...]
The 8 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 | 32 ++++++++++++++
gcc/config/i386/t-i386 | 4 +-
gcc/dwarf2out.c | 3 +-
gcc/fortran/ChangeLog | 14 ++++++
gcc/fortran/resolve.c | 6 ++-
gcc/fortran/trans-openmp.c | 10 ++++-
gcc/simplify-rtx.c | 7 ++-
gcc/testsuite/ChangeLog | 24 ++++++++++
gcc/testsuite/g++.dg/debug/dwarf2/pr77363.C | 20 +++++++++
gcc/testsuite/g++.dg/ipa/devirt-52.C | 56 ++++++++++++++++++++++++
gcc/testsuite/gcc.dg/vect/pr72866.c | 19 ++++++++
gcc/testsuite/gcc.target/i386/pr77377.c | 6 +++
gcc/testsuite/gfortran.dg/gomp/pr69281.f90 | 63 +++++++++++++++++++++++++++
gcc/testsuite/gfortran.dg/gomp/pr72744.f90 | 18 ++++++++
gcc/tree-cfgcleanup.c | 11 +++--
gcc/tree-ssa-pre.c | 9 ++++
gcc/tree-vect-patterns.c | 46 ++++++++++++++-----
libgomp/ChangeLog | 8 ++++
libgomp/testsuite/libgomp.fortran/pr71014.f90 | 20 +++++++++
19 files changed, 352 insertions(+), 24 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/debug/dwarf2/pr77363.C
create mode 100644 gcc/testsuite/g++.dg/ipa/devirt-52.C
create mode 100644 gcc/testsuite/gcc.dg/vect/pr72866.c
create mode 100644 gcc/testsuite/gcc.target/i386/pr77377.c
create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr69281.f90
create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr72744.f90
create mode 100644 libgomp/testsuite/libgomp.fortran/pr71014.f90
--
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 00d937c XFail TestMemoryFind on 32-bit architectures
new 6089310 Minidump parsing
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:
cmake/LLDBDependencies.cmake | 1 +
source/Plugins/Process/CMakeLists.txt | 1 +
source/Plugins/Process/minidump/CMakeLists.txt | 6 +
source/Plugins/Process/minidump/MinidumpParser.cpp | 160 +++++++++++
source/Plugins/Process/minidump/MinidumpParser.h | 73 +++++
source/Plugins/Process/minidump/MinidumpTypes.cpp | 98 +++++++
source/Plugins/Process/minidump/MinidumpTypes.h | 298 +++++++++++++++++++++
unittests/Process/CMakeLists.txt | 1 +
unittests/Process/minidump/CMakeLists.txt | 8 +
unittests/Process/minidump/Inputs/linux-x86_64.cpp | 25 ++
unittests/Process/minidump/Inputs/linux-x86_64.dmp | Bin 0 -> 38320 bytes
unittests/Process/minidump/MinidumpParserTest.cpp | 97 +++++++
12 files changed, 768 insertions(+)
create mode 100644 source/Plugins/Process/minidump/CMakeLists.txt
create mode 100644 source/Plugins/Process/minidump/MinidumpParser.cpp
create mode 100644 source/Plugins/Process/minidump/MinidumpParser.h
create mode 100644 source/Plugins/Process/minidump/MinidumpTypes.cpp
create mode 100644 source/Plugins/Process/minidump/MinidumpTypes.h
create mode 100644 unittests/Process/minidump/CMakeLists.txt
create mode 100644 unittests/Process/minidump/Inputs/linux-x86_64.cpp
create mode 100644 unittests/Process/minidump/Inputs/linux-x86_64.dmp
create mode 100644 unittests/Process/minidump/MinidumpParserTest.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 clang.
from 6f75e6d [analyzer][test commit] ExprEngine.cpp: Remove training white [...]
new 3752b19 [Frontend] Fix mcount inlining bug
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/CodeGen/CodeGenFunction.cpp | 14 ++++------
test/CodeGen/mcount.c | 20 +++++++++++--
test/Frontend/gnu-mcount.c | 62 ++++++++++++++++++++---------------------
3 files changed, 53 insertions(+), 43 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 gcc-6-branch
in repository gcc.
from d84e716 * doc/extend.texi (SPU Built-in Functions): Remove stale re [...]
new 378bfb8 Backported from mainline 2016-08-16 Jakub Jelinek <jakub@ [...]
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 | 9 +++++++++
gcc/testsuite/ChangeLog | 8 ++++++++
gcc/testsuite/g++.dg/gomp/pr71910.C | 13 +++++++++++++
gcc/tree-cfg.c | 25 ++++++++++++++++---------
4 files changed, 46 insertions(+), 9 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/gomp/pr71910.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.
unknown user pushed a change to branch master
in repository zorg.
from 256bf5f Removed warnOnFailure flag for the step for running NDK updat [...]
new fd40f4e Checkout cfe when building clang-tools-extra 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:
zorg/buildbot/builders/SphinxDocsBuilder.py | 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.
unknown user pushed a change to branch master
in repository lnt.
from 88eb5ed Import of simple text based data
new 5a3486c Add powerpc64le to list of PowerPC architectures
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:
lnt/tests/nt.py | 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.
unknown user pushed a change to branch master
in repository clang.
from c80ac49 Remove whitespace to test commit access
new 6f75e6d [analyzer][test commit] ExprEngine.cpp: Remove training white [...]
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/StaticAnalyzer/Core/ExprEngineCXX.cpp | 4 ++--
1 file changed, 2 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 gcc.
from 08fded5 [AArch64] Add ANDS pattern for CMP+ZERO_EXTEND
new 1c02615 Fix more bogus testsuite failures for avr.
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 | 7 +++++++
gcc/testsuite/gcc.dg/pr64252.c | 1 +
gcc/testsuite/gcc.dg/pr66299-1.c | 1 +
gcc/testsuite/gcc.dg/pr66299-2.c | 1 +
gcc/testsuite/gcc.dg/torture/20131115-1.c | 1 +
5 files changed, 11 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.