This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository lld.
from cdb086a44 Add test case for LLD/COFF for stdcall exports in .def files
new 719278eca Re-land "COFF: migrate def parser from LLD to LLVM"
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:
COFF/CMakeLists.txt | 2 -
COFF/Driver.cpp | 88 ++++++++-
COFF/Driver.h | 3 -
COFF/Librarian.cpp | 511 ----------------------------------------------------
COFF/ModuleDef.cpp | 304 -------------------------------
5 files changed, 84 insertions(+), 824 deletions(-)
delete mode 100644 COFF/Librarian.cpp
delete mode 100644 COFF/ModuleDef.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 hjl/pr53037/master
in repository gcc.
at e93cef45e8c Initial implementation of warn_if_not_aligned
This branch includes the following new commits:
new e93cef45e8c Initial implementation of warn_if_not_aligned
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.
--
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 d496b07e325 [TargetLowering] fix formatting; NFC
new e0fcf724678 AMDGPU: Make auto waitcnt before barrier a feature
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/AMDGPU/AMDGPU.td | 7 +++++++
lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 1 +
lib/Target/AMDGPU/AMDGPUSubtarget.h | 11 +++++------
lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 3 ++-
lib/Target/AMDGPU/SIInsertWaits.cpp | 2 +-
test/CodeGen/AMDGPU/llvm.amdgcn.s.barrier.ll | 9 ++++++---
6 files changed, 22 insertions(+), 11 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 949d61c15 Revert "COFF: migrate def parser from LLD to LLVM"
new cdb086a44 Add test case for LLD/COFF for stdcall exports in .def files
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/COFF/def-export-stdcall.s | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 test/COFF/def-export-stdcall.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 gcc-7-branch
in repository gcc.
from 72be0fe0419 PR71607: Fix ICE when loading constant
new 4b56a663e41 2017-06-02 Thomas Koenig <tkoenig(a)gcc.gnu.org>
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/frontend-passes.c | 2 +-
gcc/testsuite/ChangeLog | 5 +++++
gcc/testsuite/gfortran.dg/matmul_bounds_12.f90 | 17 +++++++++++++++++
4 files changed, 29 insertions(+), 1 deletion(-)
create mode 100644 gcc/testsuite/gfortran.dg/matmul_bounds_12.f90
--
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 23873bb3a19 [LazyValueInfo] Fix formatting NFC.
new d496b07e325 [TargetLowering] fix formatting; 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/CodeGen/SelectionDAG/TargetLowering.cpp | 3 +--
1 file changed, 1 insertion(+), 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.
from b4530cfcf7 ASTPrinter: Objective-C method declarations don't need a spa [...]
new d9cc152d85 [Modules] Fix use after scope.
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/Serialization/ASTWriter.cpp | 3 ++-
1 file changed, 2 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 clang-tools-extra.
from 8a73c96b clang-rename: add new -force option
new eaa9ccfa [clang-tidy] check for __func__/__FUNCTION__ in lambdas
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:
clang-tidy/misc/CMakeLists.txt | 1 +
clang-tidy/misc/LambdaFunctionNameCheck.cpp | 99 ++++++++++++++++++++++
clang-tidy/misc/LambdaFunctionNameCheck.h | 51 +++++++++++
clang-tidy/misc/MiscTidyModule.cpp | 3 +
docs/ReleaseNotes.rst | 5 ++
docs/clang-tidy/checks/list.rst | 1 +
.../checks/misc-lambda-function-name.rst | 27 ++++++
test/clang-tidy/misc-lambda-function-name.cpp | 41 +++++++++
8 files changed, 228 insertions(+)
create mode 100644 clang-tidy/misc/LambdaFunctionNameCheck.cpp
create mode 100644 clang-tidy/misc/LambdaFunctionNameCheck.h
create mode 100644 docs/clang-tidy/checks/misc-lambda-function-name.rst
create mode 100644 test/clang-tidy/misc-lambda-function-name.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 4b07d035e26 Verify a couple more fields in STATEPOINT instructions
new 29e59c38ab2 Tidy up a bit of r304516, use SmallVector::assign rather th [...]
new 23873bb3a19 [LazyValueInfo] Fix formatting NFC.
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/ADT/SmallVector.h | 8 +++++++
lib/Analysis/LazyValueInfo.cpp | 2 +-
lib/Bitcode/Writer/BitcodeWriter.cpp | 46 +++++++++++++-----------------------
lib/Target/X86/X86ISelLowering.cpp | 4 ++--
unittests/ADT/SmallVectorTest.cpp | 10 ++++++++
5 files changed, 37 insertions(+), 33 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 b0e6722b371 Add ChangeLog entry for revision 248838
new 8107122220d Fix segfault in free_growth_caches (PR jit/80954)
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/ipa-inline-analysis.c | 5 ++++-
2 files changed, 10 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.