This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository compiler-rt.
from 76cdb7459 ubsan: Unbreak ubsan_cxx runtime library on Windows.
new f621dd83d [libFuzzer] reduce the size of the merge control file by not [...]
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/fuzzer/FuzzerMerge.cpp | 26 +++++++++++++++++---------
1 file changed, 17 insertions(+), 9 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 211a095ea64 [AutoUpgrade] Fix a compatibility issue with module flag
new af2e5228212 [DebugInfo] Add missing DW_OP_deref when an NRVO pointer is [...]
new 17be5c39cef [DebugInfo] Insert DW_OP_deref when spilling indirect DBG_VALUEs
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:
include/llvm/CodeGen/MachineInstrBuilder.h | 4 ++
lib/CodeGen/LiveDebugVariables.cpp | 88 ++++++++++++++---------
lib/CodeGen/MachineInstr.cpp | 40 +++++++----
lib/CodeGen/RegAllocFast.cpp | 78 ++++++++------------
test/DebugInfo/X86/bbjoin.ll | 6 +-
test/DebugInfo/X86/dbg-declare-arg.ll | 18 ++++-
test/DebugInfo/X86/spill-indirect-nrvo.ll | 103 +++++++++++++++++++++++++++
test/DebugInfo/X86/spill-nontrivial-param.ll | 89 +++++++++++++++++++++++
8 files changed, 324 insertions(+), 102 deletions(-)
create mode 100644 test/DebugInfo/X86/spill-indirect-nrvo.ll
create mode 100644 test/DebugInfo/X86/spill-nontrivial-param.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 gcc-6-branch
in repository gcc.
from d7bd960fd16 Backported from mainline 2017-08-08 Richard Biener <rgu [...]
new 2c9a2040b47 Backported from mainline 2017-07-27 Jakub Jelinek <jaku [...]
new 4e3818b183d Backported from mainline 2017-08-03 Jakub Jelinek <jaku [...]
new e60a504fc13 Backported from mainline 2017-08-03 Jakub Jelinek <jaku [...]
new 4296a153b91 Backported from mainline 2017-08-09 Jakub Jelinek <jaku [...]
new 9214ff85e62 Backported from mainline 2017-09-04 Jakub Jelinek <jaku [...]
new 76e84989cd9 Backported from mainline 2017-09-05 Jakub Jelinek <jaku [...]
new 3ce57da2478 Backported from mainline 2017-09-05 Jakub Jelinek <jaku [...]
new cb62c0d2d1f Backported from mainline 2017-09-12 Jakub Jelinek <jaku [...]
new 4c9257a2639 Backported from mainline 2017-09-12 Jakub Jelinek <jaku [...]
new 8e8ac7d5583 Backported from mainline 2017-09-14 Jakub Jelinek <jaku [...]
The 10 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 | 34 +++++++++++++++++++++++++
gcc/bb-reorder.c | 6 +++--
gcc/c-family/ChangeLog | 19 ++++++++++++++
gcc/c-family/c-common.c | 12 ++++++---
gcc/c-family/c-omp.c | 21 +++++++++++++++
gcc/cp/ChangeLog | 9 +++++++
gcc/cp/cp-gimplify.c | 4 +++
gcc/lra-remat.c | 2 +-
gcc/omp-low.c | 22 +++++++++++-----
gcc/testsuite/ChangeLog | 26 +++++++++++++++++++
gcc/testsuite/c-c++-common/pr81052.c | 28 ++++++++++++++++++++
gcc/testsuite/c-c++-common/pr82112.c | 13 ++++++++++
gcc/testsuite/g++.dg/ext/altivec-18.C | 14 ++++++++++
gcc/testsuite/gcc.dg/gomp/pr81768-1.c | 15 +++++++++++
gcc/testsuite/gcc.dg/gomp/pr81768-2.c | 15 +++++++++++
gcc/testsuite/gcc.dg/pr81621.c | 5 ++++
gcc/testsuite/gcc.dg/pr82112.c | 21 +++++++++++++++
gcc/testsuite/gcc.target/powerpc/pr82112.c | 16 ++++++++++++
gcc/tree-cfg.c | 25 +++++++++++++++++-
libgomp/ChangeLog | 20 +++++++++++++++
libgomp/testsuite/libgomp.c++/pr45784.C | 5 ++++
libgomp/testsuite/libgomp.c++/pr81314.C | 38 +++++++++++++++++++++++++++
libgomp/testsuite/libgomp.c/pr45784.c | 41 ++++++++++++++++++++++++++++++
libgomp/testsuite/libgomp.c/pr81687-1.c | 23 +++++++++++++++++
libgomp/testsuite/libgomp.c/pr81687-2.c | 27 ++++++++++++++++++++
25 files changed, 447 insertions(+), 14 deletions(-)
create mode 100644 gcc/testsuite/c-c++-common/pr81052.c
create mode 100644 gcc/testsuite/c-c++-common/pr82112.c
create mode 100644 gcc/testsuite/g++.dg/ext/altivec-18.C
create mode 100644 gcc/testsuite/gcc.dg/gomp/pr81768-1.c
create mode 100644 gcc/testsuite/gcc.dg/gomp/pr81768-2.c
create mode 100644 gcc/testsuite/gcc.dg/pr81621.c
create mode 100644 gcc/testsuite/gcc.dg/pr82112.c
create mode 100644 gcc/testsuite/gcc.target/powerpc/pr82112.c
create mode 100644 libgomp/testsuite/libgomp.c++/pr45784.C
create mode 100644 libgomp/testsuite/libgomp.c++/pr81314.C
create mode 100644 libgomp/testsuite/libgomp.c/pr45784.c
create mode 100644 libgomp/testsuite/libgomp.c/pr81687-1.c
create mode 100644 libgomp/testsuite/libgomp.c/pr81687-2.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 gcc-6-branch
in repository gcc.
from 6e82d9f8ce0 Backport r251049
new 3672c6d649f Backported from mainline 2017-06-30 Jakub Jelinek <jaku [...]
new 76ccf384f42 PR libquadmath/65757 * math/roundq.c: Cherry-pick upstrea [...]
new d7bd960fd16 Backported from mainline 2017-08-08 Richard Biener <rgu [...]
The 3 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 | 31 +++++++++++++++++++++++++++++++
gcc/config/i386/sse.md | 27 +++++++++++++++++----------
gcc/function.c | 17 +++++++++++++++++
gcc/testsuite/ChangeLog | 18 ++++++++++++++++++
gcc/testsuite/gcc.dg/pr79499.c | 13 +++++++++++++
gcc/testsuite/gcc.target/i386/pr81225.c | 14 ++++++++++++++
gcc/testsuite/gcc.target/i386/pr81766.c | 5 +++++
libquadmath/ChangeLog | 5 +++++
libquadmath/math/roundq.c | 4 ++--
9 files changed, 122 insertions(+), 12 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/pr79499.c
create mode 100644 gcc/testsuite/gcc.target/i386/pr81225.c
create mode 100644 gcc/testsuite/gcc.target/i386/pr81766.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 gcc.
from 96bf2948e4a Add support for -std=c++2a. * c-common.h (cxx_dialect): A [...]
new 03c11029b43 compiler: call error_statement for fallthrough in last case
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/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/statements.cc | 6 ++++++
2 files changed, 7 insertions(+), 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 llvm.
from a9217f66bfc [WebAssembly] MC: Create wasm data segments based on MCSections
new 574c3a197fc Fix build for LLVM unittests
new 211a095ea64 [AutoUpgrade] Fix a compatibility issue with module flag
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/IR/AutoUpgrade.cpp | 18 ++++++++++++++++++
test/Bitcode/upgrade-module-flag.ll | 6 ++++--
unittests/Linker/LinkModulesTest.cpp | 12 ++++++------
3 files changed, 28 insertions(+), 8 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 74956124779 2017-09-15 Steve Ellcey <sellcey(a)cavium.com>
new 561fdd794bd compiler: check error expression in Array_type::get_bac [...]
new 96bf2948e4a Add support for -std=c++2a. * c-common.h (cxx_dialect): A [...]
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:
gcc/ChangeLog | 8 ++++++++
gcc/c-family/ChangeLog | 11 +++++++++++
gcc/c-family/c-common.h | 4 +++-
gcc/c-family/c-opts.c | 29 ++++++++++++++++++++++++++---
gcc/c-family/c.opt | 8 ++++++++
gcc/doc/cpp.texi | 5 ++++-
gcc/doc/invoke.texi | 10 ++++++++++
gcc/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/types.cc | 5 +++++
gcc/testsuite/ChangeLog | 11 +++++++++++
gcc/testsuite/g++.dg/cpp2a/cplusplus.C | 4 ++++
gcc/testsuite/lib/target-supports.exp | 29 ++++++++++++++++++++++++++++-
libcpp/ChangeLog | 8 ++++++++
libcpp/include/cpplib.h | 3 ++-
libcpp/init.c | 7 ++++++-
15 files changed, 135 insertions(+), 9 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp2a/cplusplus.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 lld.
from 4efc834f0 Keep some relocations with undefined weak symbols.
new 317013012 Update the monorepo URL in a lld's document.
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/index.rst | 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 gcc.
from f64621cdf2a /cp 2017-09-15 Manuel Lopez-Ibanez <manu(a)gcc.gnu.org> [...]
new 3507457a9a0 Implement C11 excess precision semantics for conversions (P [...]
new 74956124779 2017-09-15 Steve Ellcey <sellcey(a)cavium.com>
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:
gcc/ChangeLog | 8 +++
gcc/c/ChangeLog | 9 ++++
gcc/c/c-typeck.c | 30 ++++++++++-
gcc/doc/extend.texi | 5 +-
gcc/testsuite/ChangeLog | 5 ++
gcc/testsuite/gcc.target/i386/excess-precision-8.c | 61 ++++++++++++++++++++++
6 files changed, 114 insertions(+), 4 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/i386/excess-precision-8.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 llvm.
from fa690d4e1c6 Change encodeU/SLEB128 to pad to certain number of bytes
new f271376d62c [ConstantFold] Return the correct type when folding a GEP w [...]
new a9217f66bfc [WebAssembly] MC: Create wasm data segments based on MCSections
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:
include/llvm/MC/MCSectionWasm.h | 11 ++-
lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 8 +-
lib/IR/ConstantFold.cpp | 13 ++-
lib/MC/MCObjectFileInfo.cpp | 32 +++----
lib/MC/MCWasmStreamer.cpp | 2 +-
lib/MC/WasmObjectWriter.cpp | 102 +++++++++++----------
.../{unnamed-data.ll => explicit-sections.ll} | 52 ++++-------
test/Transforms/InstCombine/pr34627.ll | 11 +++
8 files changed, 129 insertions(+), 102 deletions(-)
copy test/MC/WebAssembly/{unnamed-data.ll => explicit-sections.ll} (57%)
create mode 100644 test/Transforms/InstCombine/pr34627.ll
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.