This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from ba9543c [LoopVectorize] Change comment for isOutOfScope in collectLoo [...]
new 23d7717 [NVPTX] remove unnecessary named metadata update that happens [...]
new f8cfb2f [lli] Add the ability for OrcLazyJIT to accept multiple input [...]
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/NVPTX/NVPTXGenericToNVVM.cpp | 36 ------------------
test/CodeGen/NVPTX/generic-to-nvvm-ir.ll | 64 ++++++++++++++++++++++++++++++++
tools/lli/OrcLazyJIT.cpp | 8 ++--
tools/lli/OrcLazyJIT.h | 3 +-
tools/lli/lli.cpp | 14 ++++++-
5 files changed, 83 insertions(+), 42 deletions(-)
create mode 100644 test/CodeGen/NVPTX/generic-to-nvvm-ir.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 gcc.
from 7a2ea99 Fix std::wstring allocator tests
new 9b72ac7 2016-08-02 Vladimir Makarov <vmakarov(a)redhat.com>
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 | 6 ++++++
gcc/lra-spills.c | 22 ++++++++++++++++------
2 files changed, 22 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 compiler-rt.
from f9dff4e Remove stale CHECK lines that should have been included in r277478
new fb61214 [asan] Intercept RtlRaiseException instead of kernel32!RaiseE [...]
new 62d95f2 [compiler-rt] Add more interception patterns.
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/asan/asan_win.cc | 11 +++++++----
lib/interception/interception_win.cc | 10 +++++++++-
lib/interception/tests/interception_win_test.cc | 8 ++++++++
test/asan/TestCases/Windows/dll_host.cc | 2 +-
4 files changed, 25 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 558bab8 Fixes for post-commit review comments on r277480
new 22b561a AArch64: properly calculate cmpxchg status in FastISel.
new ba9543c [LoopVectorize] Change comment for isOutOfScope in collectLoo [...]
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/AArch64/AArch64FastISel.cpp | 27 ++++++++++++++++++------
lib/Target/AArch64/AArch64InstrAtomics.td | 14 ++++++------
lib/Transforms/Vectorize/LoopVectorize.cpp | 7 +++---
test/CodeGen/AArch64/fast-isel-cmpxchg.ll | 11 ++++++----
test/Transforms/LoopVectorize/X86/uniform-phi.ll | 27 ++++++++++++++++++++++++
5 files changed, 66 insertions(+), 20 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 5aa497d fix comments typos [NFC]
new f9dff4e Remove stale CHECK lines that should have been included in r277478
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/asan/TestCases/Windows/queue_user_work_item_report.cc | 2 --
1 file changed, 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 clang-tools-extra.
from 1a43f82 [clang-rename] fix Emacs integration script
new ee95508 [clang-tidy] MPITypeMismatchCheck
new f5efd67 [docs] Fix links format.
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:
clang-tidy/CMakeLists.txt | 1 +
clang-tidy/{boost => mpi}/CMakeLists.txt | 7 +-
.../BoostTidyModule.cpp => mpi/MPITidyModule.cpp} | 23 +-
clang-tidy/mpi/TypeMismatchCheck.cpp | 336 +++++++++++++++++++++
clang-tidy/mpi/TypeMismatchCheck.h | 52 ++++
clang-tidy/plugin/CMakeLists.txt | 1 +
clang-tidy/tool/CMakeLists.txt | 1 +
clang-tidy/tool/ClangTidyMain.cpp | 5 +
docs/clang-rename.rst | 4 +-
docs/clang-tidy/checks/list.rst | 1 +
docs/clang-tidy/checks/mpi-type-mismatch.rst | 20 ++
docs/include-fixer.rst | 6 +-
test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h | 62 ++++
test/clang-tidy/mpi-type-mismatch.cpp | 255 ++++++++++++++++
14 files changed, 754 insertions(+), 20 deletions(-)
copy clang-tidy/{boost => mpi}/CMakeLists.txt (58%)
copy clang-tidy/{boost/BoostTidyModule.cpp => mpi/MPITidyModule.cpp} (51%)
create mode 100644 clang-tidy/mpi/TypeMismatchCheck.cpp
create mode 100644 clang-tidy/mpi/TypeMismatchCheck.h
create mode 100644 docs/clang-tidy/checks/mpi-type-mismatch.rst
create mode 100644 test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h
create mode 100644 test/clang-tidy/mpi-type-mismatch.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 libcxx.
from db870e6 Fixing 'Aquire' typo and libcxx build.
new 4e1f9a0 Pass compilers when configuring Google Benchmark.
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:
benchmarks/CMakeLists.txt | 9 +++++++--
1 file changed, 7 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 compiler-rt.
from 2aa3178 [Profile] track ownership of filename pattern string
new 5aa497d fix comments typos [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/asan/asan_win_dynamic_runtime_thunk.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 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 release_39
in repository llvm.
from 358d8cc Merging r276701 and r277439
new b55453a Merging r276648: -------------------------------------------- [...]
new f89a462 Merging r277371: -------------------------------------------- [...]
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/Target/TargetLowering.h | 4 +
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 32 ++-
lib/CodeGen/SelectionDAG/TargetLowering.cpp | 10 +
lib/Target/X86/X86ISelLowering.cpp | 21 ++
test/CodeGen/X86/avx512-cvt.ll | 347 ++++++++++++++++++++++++++++
test/CodeGen/X86/pr28504.ll | 37 +++
6 files changed, 442 insertions(+), 9 deletions(-)
create mode 100644 test/CodeGen/X86/pr28504.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 55fcee6 [IRCE] Rename variable; NFC
new 558bab8 Fixes for post-commit review comments on r277480
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/Utils/MemorySSA.cpp | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.