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 5cdae84e6 Switch syscall(2)/__syscall(2) calls to libc calls on NetBSD
new 8e7ed600f Remove a path-length limitation for the xray logfile.
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/xray/xray_utils.cc | 5 ++---
1 file changed, 2 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 master
in repository compiler-rt.
from f3e4c7dde Unbreak linux cfi build
new 5cdae84e6 Switch syscall(2)/__syscall(2) calls to libc calls on NetBSD
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/sanitizer_common/CMakeLists.txt | 1 +
lib/sanitizer_common/sanitizer_linux.cc | 74 +++----
lib/sanitizer_common/sanitizer_netbsd.cc | 326 +++++++++++++++++++++++++++++++
lib/tsan/go/buildgo.sh | 1 +
4 files changed, 351 insertions(+), 51 deletions(-)
create mode 100644 lib/sanitizer_common/sanitizer_netbsd.cc
--
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 5c1f4358a9b Revert r343499 and r343498. X86 test improvements
new f6d7cdc06b5 [X86] Add more test shrinking with truncate and sign bit us [...]
new 79816c8fee1 X86, AArch64, ARM: Do not attach debug location to spill/re [...]
new 55eda328c50 [globalisel] Add a combiner helpers for extending loads and [...]
new 2f73099e903 Temporarily revert "[GVNHoist] Re-enable GVNHoist by default"
The 4 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/CodeGen/GlobalISel/Combiner.h | 10 +
include/llvm/CodeGen/GlobalISel/CombinerHelper.h | 11 +-
include/llvm/CodeGen/GlobalISel/CombinerInfo.h | 5 +-
include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 10 +-
lib/CodeGen/GlobalISel/Combiner.cpp | 31 +-
lib/CodeGen/GlobalISel/CombinerHelper.cpp | 218 +++++++++-
lib/Passes/PassBuilder.cpp | 4 +-
lib/Target/AArch64/AArch64.h | 2 +
lib/Target/AArch64/AArch64InstrInfo.cpp | 14 +-
lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp | 108 +++++
lib/Target/AArch64/AArch64TargetMachine.cpp | 6 +
lib/Target/AArch64/CMakeLists.txt | 1 +
lib/Target/ARM/ARMBaseInstrInfo.cpp | 30 +-
lib/Target/X86/X86InstrInfo.cpp | 6 +-
lib/Transforms/IPO/PassManagerBuilder.cpp | 4 +-
test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll | 2 +-
.../AArch64/GlobalISel/gisel-commandline-option.ll | 1 +
.../prelegalizercombiner-extending-loads.mir | 450 +++++++++++++++++++++
test/CodeGen/AArch64/O0-pipeline.ll | 1 +
test/CodeGen/AArch64/spill-debuginfo.mir | 32 ++
test/CodeGen/X86/test-shrink.ll | 147 ++++++-
test/DebugInfo/X86/fission-ranges.ll | 2 +-
test/DebugInfo/X86/parameters.ll | 3 +-
test/Other/new-pm-defaults.ll | 15 +-
test/Other/new-pm-thinlto-defaults.ll | 15 +-
test/Other/opt-O2-pipeline.ll | 6 -
test/Other/opt-O3-pipeline.ll | 6 -
test/Other/opt-Os-pipeline.ll | 6 -
28 files changed, 1068 insertions(+), 78 deletions(-)
create mode 100644 lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
create mode 100644 test/CodeGen/AArch64/GlobalISel/prelegalizercombiner-extending- [...]
create mode 100644 test/CodeGen/AArch64/spill-debuginfo.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.
from e130df5734 [clang-format] Update comment, NFCI
new dedd45eb43 Distinguish `__block` variables that are captured by escapin [...]
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/clang/AST/Decl.h | 23 +++++++++++
include/clang/Sema/ScopeInfo.h | 17 ++++++++
lib/AST/Decl.cpp | 8 ++++
lib/CodeGen/CGBlocks.cpp | 28 ++++++++-----
lib/CodeGen/CGClass.cpp | 2 +-
lib/CodeGen/CGDecl.cpp | 19 ++++-----
lib/CodeGen/CGExpr.cpp | 4 +-
lib/CodeGen/CodeGenFunction.h | 11 +++---
lib/Sema/ScopeInfo.cpp | 2 +
lib/Sema/Sema.cpp | 59 ++++++++++++++++++++++++++++
lib/Sema/SemaDecl.cpp | 33 +---------------
lib/Sema/SemaExpr.cpp | 3 ++
lib/Serialization/ASTReaderDecl.cpp | 1 +
lib/Serialization/ASTWriterDecl.cpp | 3 ++
test/CodeGen/block-byref-aggr.c | 4 ++
test/CodeGen/blocks-seq.c | 1 +
test/CodeGen/exceptions.c | 1 +
test/CodeGen/personality.c | 1 +
test/CodeGenCXX/block-capture.cpp | 2 +
test/CodeGenCXX/blocks.cpp | 1 +
test/CodeGenCXX/debug-info-blocks.cpp | 1 +
test/CodeGenCXX/noescape.cpp | 31 ++++++++++++++-
test/CodeGenObjC/arc-no-arc-exceptions.m | 1 +
test/CodeGenObjC/arc-unoptimized-byref-var.m | 1 +
test/CodeGenObjC/blocks-1.m | 49 +++++++++++++----------
test/CodeGenObjC/noescape.m | 52 +++++++++++++++++++++++-
test/CodeGenObjCXX/arc-blocks.mm | 11 +++++-
test/PCH/block-helpers.cpp | 20 ++++++++++
test/SemaObjCXX/blocks.mm | 8 +++-
test/SemaObjCXX/noescape.mm | 25 ++++++++++++
30 files changed, 340 insertions(+), 82 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 beae29ccd48 [Hexagon] Remove incorrect pattern for swiz
new 5c1f4358a9b Revert r343499 and r343498. X86 test improvements
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/X86/X86ISelDAGToDAG.cpp | 57 ++++++----------------
test/CodeGen/X86/2010-08-04-MaskedSignedCompare.ll | 3 +-
test/CodeGen/X86/test-shrink.ll | 49 +++++++++++++------
3 files changed, 50 insertions(+), 59 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 541d32af7c [clang-format] Fix typo in comment, NFCI
new e130df5734 [clang-format] Update comment, NFCI
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/Format/FormatToken.h | 4 ----
1 file changed, 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 master
in repository gcc.
from 40daf6a3dac * ru.po: Update.
new 9d4fa1d7c28 [libiberty] Use pipe inside pex_run
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:
libiberty/ChangeLog | 7 +++
libiberty/config.in | 3 ++
libiberty/configure | 4 +-
libiberty/configure.ac | 4 +-
libiberty/pex-unix.c | 136 ++++++++++++++++++++++++++++++++++---------------
5 files changed, 109 insertions(+), 45 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 cdda304902d [AMDGPU] Fixed SIInstrInfo::getOpSize to handle subregs
new beae29ccd48 [Hexagon] Remove incorrect pattern for swiz
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/Hexagon/HexagonPatterns.td | 8 ------
test/CodeGen/Hexagon/swiz.ll | 51 -----------------------------------
2 files changed, 59 deletions(-)
delete mode 100644 test/CodeGen/Hexagon/swiz.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 lld.
from 688fc8b68 Add an explanation about cross linking.
new df3e3050e [ELF] [HEXAGON] Add support for PLT_B22_PCREL and HEX_32_PCREL
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/Arch/Hexagon.cpp | 4 ++++
test/ELF/hexagon-shared.s | 34 +++++++++++++++++++++-------------
2 files changed, 25 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 clang.
from faaac5c529 [OPENMP][NVPTX] Handle `requires datasharing` flag correctly [...]
new a7c19c04ae [analyzer][NFC] Refactor functions in PlistDiagnostics to ta [...]
new 541d32af7c [clang-format] Fix typo in comment, NFCI
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/Format/FormatToken.h | 2 +-
lib/StaticAnalyzer/Core/PlistDiagnostics.cpp | 143 ++++++++++++++-------------
2 files changed, 73 insertions(+), 72 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.