This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang-tools-extra.
from 1891c56b [clangd] codeComplete returns more structured completion item [...]
new 45ebbb8b [clangd] ClangdServer::codeComplete return CodeCompleteResult [...]
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:
clangd/ClangdLSPServer.cpp | 8 +-
clangd/ClangdServer.cpp | 10 +-
clangd/ClangdServer.h | 2 +-
clangd/CodeComplete.cpp | 13 ++
clangd/CodeComplete.h | 4 +-
unittests/clangd/ClangdTests.cpp | 2 +-
unittests/clangd/CodeCompleteTests.cpp | 336 +++++++++++++++++----------------
unittests/clangd/SyncAPI.cpp | 4 +-
unittests/clangd/SyncAPI.h | 2 +-
9 files changed, 207 insertions(+), 174 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 ba5cf14a7 [ELF] - Change dyn_cast to cast. NFC.
new f1b995303 [ELF] - Remove dead code. 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:
ELF/GdbIndex.h | 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.
tcwg-buildslave pushed a change to branch tested
in repository toolchain/jenkins-scripts.
from f5d36b1 jenkins-helpers: Fix typo.
adds c7ca1e8 jenkins-helpers.sh: Fix git_rev_parse path
No new revisions were added by this update.
Summary of changes:
jenkins-helpers.sh | 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 llvm.
from 868f51c186b [AArch64][SVE] Asm: Support for (SQ)INCP/DECP (scalar, vector)
new a43dcd4394d [SLPVectorizer] Only Alternate opcodes use ShuffleVector ca [...]
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/Vectorize/SLPVectorizer.cpp | 6 +++++-
1 file changed, 5 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 gcc.
from d751ef835e2 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Do [...]
new 4a4a320b3eb Add new tests for --completion option.
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 | 6 ++++++
gcc/testsuite/gcc.dg/completion-1.c | 8 ++++++++
gcc/testsuite/gcc.dg/completion-2.c | 10 ++++++++++
gcc/testsuite/gcc.dg/completion-3.c | 13 +++++++++++++
4 files changed, 37 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/completion-1.c
create mode 100644 gcc/testsuite/gcc.dg/completion-2.c
create mode 100644 gcc/testsuite/gcc.dg/completion-3.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 fe476f5b59e [AArch64][SVE] Asm: Support for (saturating) vector INC/DEC [...]
new 868f51c186b [AArch64][SVE] Asm: Support for (SQ)INCP/DECP (scalar, vector)
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/AArch64/AArch64SVEInstrInfo.td | 18 ++++++++
lib/Target/AArch64/SVEInstrFormats.td | 76 +++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/decp-diagnostics.s | 38 ++++++++++++++++
test/MC/AArch64/SVE/decp.s | 74 ++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/incp-diagnostics.s | 38 ++++++++++++++++
test/MC/AArch64/SVE/incp.s | 74 ++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/sqdecp-diagnostics.s | 53 +++++++++++++++++++++
test/MC/AArch64/SVE/sqdecp.s | 74 ++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/sqincp-diagnostics.s | 48 +++++++++++++++++++
test/MC/AArch64/SVE/sqincp.s | 74 ++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/uqdecp.s | 74 ++++++++++++++++++++++++++++++
test/MC/AArch64/SVE/uqincp-diagnostics.s | 48 +++++++++++++++++++
test/MC/AArch64/SVE/uqincp.s | 74 ++++++++++++++++++++++++++++++
13 files changed, 763 insertions(+)
create mode 100644 test/MC/AArch64/SVE/decp-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/decp.s
create mode 100644 test/MC/AArch64/SVE/incp-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/incp.s
create mode 100644 test/MC/AArch64/SVE/sqdecp-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/sqdecp.s
create mode 100644 test/MC/AArch64/SVE/sqincp-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/sqincp.s
create mode 100644 test/MC/AArch64/SVE/uqdecp.s
create mode 100644 test/MC/AArch64/SVE/uqincp-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/uqincp.s
--
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 b7f856e1c13 2018-07-02 Richard Biener <rguenther(a)suse.de>
new d751ef835e2 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Do [...]
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/config/i386/i386.c | 2 +-
2 files changed, 8 insertions(+), 3 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-8-branch
in repository gcc.
from aa4c961d643 Daily bump.
new 65948c062e4 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Do [...]
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 | 7 ++++++-
gcc/config/i386/i386.c | 2 +-
2 files changed, 7 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.