This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from 6a00520d81 Currently clang does not emit unused static constants. GCC e [...]
new 2c4b8ea78f [NFC] Test commit
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/Analysis/ThreadSafety.cpp | 4 ++--
1 file changed, 2 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 llvm.
from 34868d785f1 [Hexagon] Enable interleaving in loop vectorizer
new 487456c9c51 [ARM] Move machine operand target flags to ARMBaseInstrInfo
new cab386f9087 [ARM] Avoid injecting constant islands in movw+movt pairs o [...]
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/Target/ARM/ARMBaseInstrInfo.cpp | 28 +
lib/Target/ARM/ARMBaseInstrInfo.h | 7 +
lib/Target/ARM/ARMConstantIslandPass.cpp | 16 +
lib/Target/ARM/ARMInstrInfo.cpp | 28 -
lib/Target/ARM/ARMInstrInfo.h | 7 -
test/CodeGen/ARM/constant-island-movwt.mir | 902 +++++++++++++++++++++++++++++
6 files changed, 953 insertions(+), 35 deletions(-)
create mode 100644 test/CodeGen/ARM/constant-island-movwt.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 clang-tools-extra.
from ef9c2c07 [clang-tidy] Add Abseil prefix to documentation
new 32f6cc55 [clangd] send diagnostic categories only when 'categorySuppor [...]
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 | 4 +++-
clangd/Diagnostics.h | 6 +++++
clangd/Protocol.cpp | 1 +
clangd/Protocol.h | 4 ++++
.../compile-commands-path-in-initialize.test | 2 --
test/clangd/compile-commands-path.test | 3 ---
...in-diagnostic.test => diagnostic-category.test} | 26 +---------------------
test/clangd/diagnostics.test | 1 -
test/clangd/did-change-configuration-params.test | 1 -
test/clangd/execute-command.test | 1 -
test/clangd/extra-flags.test | 2 --
test/clangd/fixits-embed-in-diagnostic.test | 1 -
test/clangd/fixits.test | 1 -
13 files changed, 15 insertions(+), 38 deletions(-)
copy test/clangd/{fixits-embed-in-diagnostic.test => diagnostic-category.test} (64%)
--
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 5f0c51f2a lldbtest.py: Unconditionally set the clang module cache path.
new ab317c2ed Add unit test for StringLexer
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:
unittests/Utility/CMakeLists.txt | 1 +
unittests/Utility/StringLexerTest.cpp | 141 ++++++++++++++++++++++++++++++++++
2 files changed, 142 insertions(+)
create mode 100644 unittests/Utility/StringLexerTest.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 8093c81ae56 Update MemorySSA in LoopInstSimplify.
new 2e8575cb467 Update MemorySSA in LoopSimplifyCFG.
new 3c6df19a680 [ARM] Handle all-ones mask explicitly in targetShrinkDemand [...]
new 34868d785f1 [Hexagon] Enable interleaving in loop vectorizer
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:
lib/Target/ARM/ARMISelLowering.cpp | 15 +++++--
lib/Target/Hexagon/HexagonTargetTransformInfo.cpp | 6 ++-
lib/Target/Hexagon/HexagonTargetTransformInfo.h | 3 ++
lib/Transforms/Scalar/LoopSimplifyCFG.cpp | 27 ++++++++++--
test/CodeGen/ARM/demanded-bits-and.ll | 35 +++++++++++++++
test/CodeGen/Hexagon/autohvx/interleave.ll | 52 +++++++++++++++++++++++
test/Transforms/LoopSimplifyCFG/merge-header.ll | 1 +
test/Transforms/LoopSimplifyCFG/scev.ll | 1 +
8 files changed, 130 insertions(+), 10 deletions(-)
create mode 100644 test/CodeGen/ARM/demanded-bits-and.ll
create mode 100644 test/CodeGen/Hexagon/autohvx/interleave.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 llvm.
from 92802c24049 [AA] Remove a needless variable [NFC]
new 8093c81ae56 Update MemorySSA in LoopInstSimplify.
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/Scalar/LoopInstSimplify.cpp | 44 ++++++++++++++++++++++++++----
test/Transforms/LoopInstSimplify/basic.ll | 1 +
2 files changed, 39 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 llvm.
from 0c5441ad260 [X86] Replace (32/64 - n) shift amounts with (neg n) since [...]
new 92802c24049 [AA] Remove a needless variable [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:
lib/Analysis/AliasAnalysis.cpp | 4 +---
1 file changed, 1 insertion(+), 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 master
in repository compiler-rt.
from ce17deac2 [tsan] Adjust setjmp/longjmp handling on Darwin for macOS Mojave
new 2eb125877 [hwasan] remove stale data field
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/hwasan/hwasan_allocator.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.
unknown user pushed a change to branch master
in repository llvm.
from 4d1c75ee8f1 [WebAssembly] Remove MachineFrameInfo arg from checking fun [...]
new 80d595cdf8f [AST] Minor whitespace cleanup [NFC]
new 0c5441ad260 [X86] Replace (32/64 - n) shift amounts with (neg n) since [...]
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/Analysis/AliasSetTracker.cpp | 18 ++--
lib/Target/X86/X86ISelDAGToDAG.cpp | 104 ++++++++++++++++++++++
test/CodeGen/X86/clear-lowbits.ll | 144 +++++++++++++++----------------
test/CodeGen/X86/extract-lowbits.ll | 112 +++++++++++++-----------
test/CodeGen/X86/schedule-x86-64-shld.ll | 42 ++++-----
5 files changed, 262 insertions(+), 158 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 319d9891f70 2018-08-22 François Dumont <fdumont(a)gcc.gnu.org>
new f3dd725506a fix PR 86935
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/fortran/ChangeLog | 6 ++++++
gcc/fortran/match.c | 20 ++++++++++++--------
gcc/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/gfortran.dg/associate_3.f03 | 2 +-
gcc/testsuite/gfortran.dg/associate_39.f90 | 19 +++++++++++++++++++
5 files changed, 44 insertions(+), 9 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/associate_39.f90
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.