This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from a32d403fb6a Allow inconsistent offsets for 'noreturn' basic blocks when [...]
new b8a8d084efe [X86] Add kshift test cases for D51401. 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:
test/CodeGen/X86/kshift.ll | 862 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 862 insertions(+)
create mode 100644 test/CodeGen/X86/kshift.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 lldb.
from bdc04890f Added initial code completion support for the `expr` command
new 71423a6d9 Move Predicate.h from Host to Utility
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/lldb/Core/Event.h | 2 +-
include/lldb/Core/IOHandler.h | 2 +-
include/lldb/Host/Editline.h | 2 +-
include/lldb/Host/Socket.h | 2 +-
include/lldb/Host/posix/ConnectionFileDescriptorPosix.h | 2 +-
include/lldb/{Host => Utility}/Predicate.h | 8 ++++----
include/lldb/module.modulemap | 1 -
source/Core/IOHandler.cpp | 2 +-
source/Host/common/Host.cpp | 2 +-
source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h | 2 +-
source/Plugins/Process/Windows/Common/DebuggerThread.cpp | 2 +-
source/Plugins/Process/Windows/Common/DebuggerThread.h | 2 +-
source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h | 2 +-
unittests/Core/BroadcasterTest.cpp | 2 +-
unittests/Host/CMakeLists.txt | 1 -
unittests/Utility/CMakeLists.txt | 1 +
unittests/{Host => Utility}/PredicateTest.cpp | 2 +-
17 files changed, 18 insertions(+), 19 deletions(-)
rename include/lldb/{Host => Utility}/Predicate.h (97%)
rename unittests/{Host => Utility}/PredicateTest.cpp (96%)
--
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 8f32507f5b6 [LLVM-C] Add Bindings For Named Metadata
new a32d403fb6a Allow inconsistent offsets for 'noreturn' basic blocks when [...]
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/CFIInstrInserter.cpp | 4 ++++
test/CodeGen/X86/cfi-inserter-noreturnblock.mir | 30 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
create mode 100644 test/CodeGen/X86/cfi-inserter-noreturnblock.mir
--
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 348470156 Remove redundant initialization
new bdc04890f Added initial code completion support for the `expr` 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:
include/lldb/Expression/ExpressionParser.h | 35 +++
include/lldb/Expression/UserExpression.h | 28 +++
.../completion}/.categories | 0
.../completion}/Makefile | 3 +-
.../completion/TestExprCompletion.py | 227 +++++++++++++++++
.../test/expression_command/completion/main.cpp | 35 +++
.../test/expression_command/completion/other.cpp | 4 +
.../functionalities/completion/TestCompletion.py | 36 ---
packages/Python/lldbsuite/test/lldbtest.py | 40 +++
source/Commands/CommandObjectExpression.cpp | 68 +++++
source/Commands/CommandObjectExpression.h | 2 +
.../Clang/ASTResultSynthesizer.cpp | 3 +-
.../Clang/ClangExpressionParser.cpp | 277 ++++++++++++++++++++-
.../ExpressionParser/Clang/ClangExpressionParser.h | 34 +++
.../ExpressionParser/Clang/ClangUserExpression.cpp | 123 +++++++++
.../ExpressionParser/Clang/ClangUserExpression.h | 7 +
16 files changed, 879 insertions(+), 43 deletions(-)
copy packages/Python/lldbsuite/test/{functionalities/abbreviation => expression_co [...]
copy packages/Python/lldbsuite/test/{api/listeners => expression_command/completio [...]
create mode 100644 packages/Python/lldbsuite/test/expression_command/completion/Te [...]
create mode 100644 packages/Python/lldbsuite/test/expression_command/completion/main.cpp
create mode 100644 packages/Python/lldbsuite/test/expression_command/completion/other.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 llvm.
from e2e1cabd39f [IR] fix declaration of shuffle mask
new 8f32507f5b6 [LLVM-C] Add Bindings For Named Metadata
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-c/Core.h | 57 ++++++++++++++++++++++++++++
include/llvm-c/Types.h | 7 ++++
include/llvm/IR/Metadata.h | 10 +++--
lib/IR/Core.cpp | 48 +++++++++++++++++++++++
test/Bindings/llvm-c/echo.ll | 11 ++++--
tools/llvm-c-test/echo.cpp | 90 ++++++++++++++++++++++++++++++++++++--------
6 files changed, 202 insertions(+), 21 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 3898022b16e [libFuzzer] Port to Windows
new e2e1cabd39f [IR] fix declaration of shuffle mask
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/IR/Instructions.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 clang.
from 13f92347b3 [libFuzzer] Port to Windows
new 570e134429 Test the cross-product of how libgcc-related arguments are p [...]
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:
test/Driver/linux-ld.c | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 82 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 master
in repository glibc.
from 2bda273aa3 reallocarray: Declare under _DEFAULT_SOURCE
new d330f31af6 Fix test failure with -DNDEBUG.
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:
ChangeLog | 5 +++++
elf/tst-dlopen-aout.c | 12 ++++++------
2 files changed, 11 insertions(+), 6 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 8be6a6f3d42 [libcpp] fix some line map comments
new 995068e42e1 PR lto/86517 * lto-opts.c (lto_write_options): Always str [...]
new c9d25f8c66b x86: Move AESNI generation to Skylake and Goldmont
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 | 12 ++++++++
gcc/config/i386/i386.c | 6 ++--
gcc/lto-opts.c | 15 +++++++++
gcc/lto-wrapper.c | 83 ++++++++++++++++++++++++++++++++++++++++++++------
4 files changed, 103 insertions(+), 13 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 9a75e493e80 [WebAssembly] Made disassembler only use stack instructions.
new 3898022b16e [libFuzzer] Port to Windows
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:
.../Instrumentation/SanitizerCoverage.cpp | 39 ++++++++++++++++++----
.../coff-pc-table-inline-8bit-counters.ll | 12 +++++++
2 files changed, 45 insertions(+), 6 deletions(-)
create mode 100644 test/Instrumentation/SanitizerCoverage/coff-pc-table-inline-8bi [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.