This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from ae29a3a8040 [PM][FunctionAttrs] add NoUnwind attribute inference to Pos [...]
new a10309cedda Fix Layering, move instrumentation transform headers into I [...]
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/Transforms/{ => Instrumentation}/GCOVProfiler.h | 2 +-
include/llvm/Transforms/{ => Instrumentation}/InstrProfiling.h | 2 +-
include/llvm/Transforms/{ => Instrumentation}/PGOInstrumentation.h | 2 +-
lib/Passes/PassBuilder.cpp | 6 +++---
lib/Transforms/Instrumentation/GCOVProfiling.cpp | 2 +-
lib/Transforms/Instrumentation/IndirectCallPromotion.cpp | 2 +-
lib/Transforms/Instrumentation/InstrProfiling.cpp | 2 +-
lib/Transforms/Instrumentation/PGOInstrumentation.cpp | 2 +-
lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp | 2 +-
9 files changed, 11 insertions(+), 11 deletions(-)
rename include/llvm/Transforms/{ => Instrumentation}/GCOVProfiler.h (92%)
rename include/llvm/Transforms/{ => Instrumentation}/InstrProfiling.h (98%)
rename include/llvm/Transforms/{ => Instrumentation}/PGOInstrumentation.h (97%)
--
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 b2926d8649 [CUDA] Fixed false error reporting in case of calling H->G->HD->D.
new be353a047c Change for an LLVM header file move
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/BackendUtil.cpp | 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 de7513fb410 PR inline-asm/85022 * emit-rtl.c (init_emit_regs): Indica [...]
new dcc97051f9d PR c++/78489 - wrong SFINAE behavior.
new 7467ab71bc4 * gcc.target/powerpc/builtins-1-le.c: Filter out gimple fo [...]
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/cp/ChangeLog | 7 +++
gcc/cp/pt.c | 54 ++++++++++---------
gcc/testsuite/ChangeLog | 5 ++
.../cpp0x/{fntmpdefarg4.C => fntmpdefarg4a.C} | 2 +-
gcc/testsuite/g++.dg/cpp0x/sfinae60.C | 25 +++++++++
gcc/testsuite/g++.dg/cpp0x/sfinae61.C | 21 ++++++++
gcc/testsuite/gcc.target/powerpc/builtins-1-le.c | 60 +++++++++++-----------
7 files changed, 121 insertions(+), 53 deletions(-)
copy gcc/testsuite/g++.dg/cpp0x/{fntmpdefarg4.C => fntmpdefarg4a.C} (68%)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/sfinae60.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/sfinae61.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 lldb.
from f8ec51bdf Change the darwin-debug target to build the standard archs.
new d2e696f1e [Commands] Add a (currently empty) `stats` command.
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:
lldb.xcodeproj/project.pbxproj | 8 ++++++++
source/Commands/CMakeLists.txt | 1 +
source/Commands/CommandObjectStats.cpp | 28 ++++++++++++++++++++++++++++
source/Commands/CommandObjectStats.h | 27 +++++++++++++++++++++++++++
source/Interpreter/CommandInterpreter.cpp | 2 ++
5 files changed, 66 insertions(+)
create mode 100644 source/Commands/CommandObjectStats.cpp
create mode 100644 source/Commands/CommandObjectStats.h
--
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 5b515098c Mmap interceptor providing mprotect support
new 132d1ff97 Revert "Mmap interceptor providing mprotect support"
new f40efdb90 FreeBSD sanitizer common, intercept couple of more functions
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/sanitizer_common/sanitizer_common.h | 2 +-
.../sanitizer_common_interceptors.inc | 18 +++------------
lib/sanitizer_common/sanitizer_common_libcdep.cc | 8 ++-----
.../sanitizer_platform_interceptors.h | 20 ++++++++---------
.../TestCases/Linux/mmap_write_exec.cpp | 26 ++--------------------
.../TestCases/{NetBSD => Posix}/access.cc | 0
.../TestCases/{NetBSD => Posix}/devname.cc | 1 +
.../TestCases/{NetBSD => Posix}/devname_r.cc | 3 ++-
.../TestCases/{NetBSD => Posix}/fgetln.cc | 1 +
test/sanitizer_common/TestCases/Posix/getpass.cc | 8 ++++++-
.../TestCases/{NetBSD => Posix}/lstat.cc | 0
.../TestCases/{NetBSD => Posix}/strlcat.cc | 2 ++
.../TestCases/{NetBSD => Posix}/strlcpy.cc | 2 ++
test/sanitizer_common/lit.common.cfg | 2 +-
14 files changed, 34 insertions(+), 59 deletions(-)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/access.cc (100%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/devname.cc (92%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/devname_r.cc (81%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/fgetln.cc (93%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/lstat.cc (100%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/strlcat.cc (97%)
rename test/sanitizer_common/TestCases/{NetBSD => Posix}/strlcpy.cc (97%)
--
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 b41a0072d [CMakeLists] Update file list after recent changes.
new f8ec51bdf Change the darwin-debug target to build the standard archs.
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:
lldb.xcodeproj/project.pbxproj | 31 ++++++++-----------------------
1 file changed, 8 insertions(+), 23 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 e3edd4831b3 [InstCombine] increase test coverage for intrinsic shrinking; NFC
new 8a304166110 [InstCombine] simplify code for FP intrinsic shrinking; NFCI
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/Transforms/InstCombine/InstCombineCalls.cpp | 15 +++++----------
1 file changed, 5 insertions(+), 10 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 lldb.
from 23bfa6fcc [Commands] Remove dead code for unused `args` command.
new b41a0072d [CMakeLists] Update file list after recent changes.
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:
source/Commands/CMakeLists.txt | 1 -
1 file changed, 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 a9607de4ae4 [Hexagon] Make findLoopInstr member of HexagonInstrInfo
new e3edd4831b3 [InstCombine] increase test coverage for intrinsic shrinking; NFC
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:
.../InstCombine/double-float-shrink-2.ll | 96 +++++++++++-----------
1 file changed, 48 insertions(+), 48 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.