This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 523f3a9 max(INT_MIN, x) -> x
new a2d36a1 2016-04-21 Ed Schonberg <schonberg(a)adacore.com>
new 3e5b214 2016-04-21 Hristian Kirtchev <kirtchev(a)adacore.com>
new 0ea0222 2016-04-21 Jerome Lambourg <lambourg(a)adacore.com>
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/ada/ChangeLog | 119 +++++++++++++++++++
gcc/ada/contracts.adb | 11 +-
gcc/ada/einfo.adb | 38 +++---
gcc/ada/exp_aggr.adb | 5 +-
gcc/ada/exp_pakd.adb | 83 ++++++-------
gcc/ada/g-socket.adb | 16 +--
gcc/ada/g-traceb.ads | 7 +-
gcc/ada/lib-writ.adb | 39 +++++-
gcc/ada/s-soflin.adb | 4 +-
gcc/ada/sem.adb | 4 +-
gcc/ada/sem_ch10.adb | 12 +-
gcc/ada/sem_ch13.adb | 20 ++++
gcc/ada/sem_ch3.adb | 24 +++-
gcc/ada/sem_ch6.adb | 58 +++++----
gcc/ada/sem_ch7.adb | 85 ++++++++------
gcc/ada/sem_ch7.ads | 15 +--
gcc/ada/sem_ch9.adb | 4 +-
gcc/ada/sem_prag.adb | 320 ++++++++++++++++++++++++++++++--------------------
gcc/ada/sem_util.adb | 232 +++++++++++++++++++++++++++---------
gcc/ada/sem_util.ads | 25 ++--
20 files changed, 753 insertions(+), 368 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 fb96547 Cherry-pick r266868 from upstream.
new 310a961 libgomp nvptx plugin: make cuMemFreeHost error non-fatal
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:
libgomp/ChangeLog | 5 +++++
libgomp/plugin/plugin-nvptx.c | 2 +-
2 files changed, 6 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 11646329 Fix a typo in an error message. Caught by Sean Silva!
new b505275 Add utility function to manipulate attributes on CallSite. NFC
new 3494767 [esan] EfficiencySanitizer instrumentation pass
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/IR/CallSite.h | 16 +
include/llvm/IR/Instructions.h | 6 +
include/llvm/InitializePasses.h | 1 +
include/llvm/Transforms/Instrumentation.h | 13 +
lib/IR/Instructions.cpp | 12 +
lib/Transforms/Instrumentation/CMakeLists.txt | 1 +
.../Instrumentation/EfficiencySanitizer.cpp | 352 +++++++++++++++++++++
lib/Transforms/Instrumentation/Instrumentation.cpp | 1 +
.../EfficiencySanitizer/cache_frag_basic.ll | 257 +++++++++++++++
9 files changed, 659 insertions(+)
create mode 100644 lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
create mode 100644 test/Instrumentation/EfficiencySanitizer/cache_frag_basic.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 clang.
from 3c188bc Split interesting warnings off from -Wfloat-conversion
new a3e7a4f [esan] EfficiencySanitizer driver flags
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/clang/Basic/Sanitizers.def | 5 ++++
include/clang/Driver/SanitizerArgs.h | 3 ++
lib/CodeGen/BackendUtil.cpp | 18 ++++++++++++
lib/Driver/SanitizerArgs.cpp | 11 +++++++-
lib/Driver/ToolChains.cpp | 4 +++
lib/Driver/Tools.cpp | 2 ++
lib/Lex/PPMacroExpansion.cpp | 2 ++
test/Driver/esan.c | 9 ++++++
test/Driver/fsanitize.c | 37 +++++++++++++++++++++++++
test/Driver/sanitize_unwind_tables.c | 1 +
test/Driver/sanitizer-ld.c | 7 +++++
test/Lexer/has_feature_efficiency_sanitizer.cpp | 11 ++++++++
12 files changed, 109 insertions(+), 1 deletion(-)
create mode 100644 test/Driver/esan.c
create mode 100644 test/Lexer/has_feature_efficiency_sanitizer.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 compiler-rt.
from 94a44ec [asan] Mark strdup test as unsupported on arm/linux.
new 33f89a1 [esan] EfficiencySanitizer base runtime library
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/config-ix.cmake | 12 ++++
lib/CMakeLists.txt | 4 ++
lib/esan/CMakeLists.txt | 35 +++++++++++
lib/esan/esan.cpp | 112 +++++++++++++++++++++++++++++++++++
lib/esan/esan.h | 44 ++++++++++++++
lib/esan/esan.syms.extra | 3 +
lib/esan/esan_interface.cpp | 102 +++++++++++++++++++++++++++++++
lib/esan/esan_interface_internal.h | 72 ++++++++++++++++++++++
test/CMakeLists.txt | 3 +
test/esan/CMakeLists.txt | 32 ++++++++++
test/esan/TestCases/verbose-simple.c | 11 ++++
test/esan/lit.cfg | 32 ++++++++++
test/esan/lit.site.cfg.in | 14 +++++
13 files changed, 476 insertions(+)
create mode 100644 lib/esan/CMakeLists.txt
create mode 100644 lib/esan/esan.cpp
create mode 100644 lib/esan/esan.h
create mode 100644 lib/esan/esan.syms.extra
create mode 100644 lib/esan/esan_interface.cpp
create mode 100644 lib/esan/esan_interface_internal.h
create mode 100644 test/esan/CMakeLists.txt
create mode 100644 test/esan/TestCases/verbose-simple.c
create mode 100644 test/esan/lit.cfg
create mode 100644 test/esan/lit.site.cfg.in
--
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-4_9-branch
in repository gcc.
from 9726a38 Daily bump.
new 6491aed PR70674: S/390: Add memory barrier to stack pointer restore [...]
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 | 14 +++++
gcc/config/s390/s390.c | 91 +++++++++++++++++++--------------
gcc/config/s390/s390.md | 10 ++++
gcc/testsuite/ChangeLog | 8 +++
gcc/testsuite/gcc.target/s390/pr70674.c | 13 +++++
5 files changed, 98 insertions(+), 38 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/s390/pr70674.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 8ac661c [PowerPC] [SSP] Fix stack guard load for 32-bit.
new 343a611 [unordered] unordered loads from null are still unreachable
new a7af0d6 Split IntrReadArgMem into IntrReadMem and IntrArgMemOnly
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/Analysis/AliasAnalysis.h | 2 +-
include/llvm/IR/Intrinsics.td | 66 ++-
include/llvm/IR/IntrinsicsAArch64.td | 28 +-
include/llvm/IR/IntrinsicsAMDGPU.td | 4 +-
include/llvm/IR/IntrinsicsARM.td | 28 +-
include/llvm/IR/IntrinsicsHexagon.td | 22 +-
include/llvm/IR/IntrinsicsMips.td | 22 +-
include/llvm/IR/IntrinsicsNVVM.td | 6 +-
include/llvm/IR/IntrinsicsPowerPC.td | 36 +-
include/llvm/IR/IntrinsicsSystemZ.td | 8 +-
include/llvm/IR/IntrinsicsX86.td | 496 ++++++++++-----------
lib/Target/AMDGPU/SIIntrinsics.td | 2 +-
.../InstCombine/InstCombineLoadStoreAlloca.cpp | 10 +-
test/Transforms/InstCombine/atomic.ll | 51 +++
utils/TableGen/CodeGenIntrinsics.h | 2 +-
utils/TableGen/CodeGenTarget.cpp | 12 +-
16 files changed, 418 insertions(+), 377 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 lld.
from 6587a94 unbreak COFF/out.test after r266929
new 6d95cf4 Revert unintentionally commited bits in r266935.
new d836a58 Reland test change.
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:
COFF/DriverUtils.cpp | 26 +-------------------------
test/COFF/out.test | 2 +-
2 files changed, 2 insertions(+), 26 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 b18e50c Add a CachedHash structure.
new 02026c0 [AMDGPU] Assembler: prevent parseDPPCtrlOps from eating inval [...]
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/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 16 ++++++++++++++--
1 file changed, 14 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 f77bb40 2016-04-21 Javier Miranda <miranda(a)adacore.com>
new 02e5d0d 2016-04-21 Hristian Kirtchev <kirtchev(a)adacore.com>
new b63b3ba 2016-04-21 Javier Miranda <miranda(a)adacore.com>
new 4d9be73 2016-04-21 Ed Schonberg <schonberg(a)adacore.com>
new f4e1889 2016-04-21 Javier Miranda <miranda(a)adacore.com>
new bfbd9cf 2016-04-21 Hristian Kirtchev <kirtchev(a)adacore.com>
new 764451d 2016-04-21 Ed Schonberg <schonberg(a)adacore.com>
new 32a4442 Minor reformatting.
new a792d79 2016-04-21 Gary Dismukes <dismukes(a)adacore.com>
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/ada/ChangeLog | 106 ++++++++++++++++++++++++
gcc/ada/exp_attr.adb | 8 +-
gcc/ada/exp_ch5.adb | 148 +++++++++++++++++++--------------
gcc/ada/exp_ch6.adb | 135 +++++++++++++++++++++++++++++-
gcc/ada/exp_unst.adb | 5 +-
gcc/ada/exp_util.adb | 27 +++++-
gcc/ada/freeze.adb | 36 ++++++--
gcc/ada/freeze.ads | 20 +++--
gcc/ada/sem_attr.adb | 14 ++--
gcc/ada/sem_aux.adb | 25 +++++-
gcc/ada/sem_aux.ads | 6 +-
gcc/ada/sem_ch13.adb | 30 ++++---
gcc/ada/sem_ch3.adb | 3 +-
gcc/ada/sem_ch6.adb | 21 ++++-
gcc/ada/sem_ch8.adb | 38 +++++++--
gcc/ada/sem_util.adb | 165 ++++++++++++++++++++++++++++---------
gcc/ada/system-vxworks-arm.ads | 4 +-
gcc/ada/system-vxworks-m68k.ads | 2 +
gcc/ada/system-vxworks-mips.ads | 2 +
gcc/ada/system-vxworks-ppc.ads | 2 +
gcc/ada/system-vxworks-sparcv9.ads | 2 +
gcc/ada/system-vxworks-x86.ads | 2 +
22 files changed, 640 insertions(+), 161 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.