This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 9c94c5fb80f [codeview] Simplify S_DEFRANGE emission code, NFC
new d31f3f62272 Revert: r343521 and r343541: [globalisel] Add a combiner he [...]
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/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 | 217 +---------
lib/Target/AArch64/AArch64.h | 2 -
lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp | 108 -----
lib/Target/AArch64/AArch64TargetMachine.cpp | 6 -
lib/Target/AArch64/CMakeLists.txt | 1 -
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 -
14 files changed, 12 insertions(+), 843 deletions(-)
delete mode 100644 lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
delete mode 100644 test/CodeGen/AArch64/GlobalISel/prelegalizercombiner-extending- [...]
--
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 0caa25c9c64 libgo: support x32 as GOARCH=amd64p32 GOOS=linux
new 68005003c6a compiler: use the underlying type to build placeholder [...]
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/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/types.cc | 2 ++
2 files changed, 3 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 llvm.
from 6d4c271eeb2 [codeview] Emit S_FRAMEPROC and use S_DEFRANGE_FRAMEPOINTER_REL
new 9c94c5fb80f [codeview] Simplify S_DEFRANGE emission 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:
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 52 ++++++++++++++------------------
1 file changed, 22 insertions(+), 30 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 lldb.
from cc4530b4d Fix tests affected by printing change.
new b062a1225 Enable C++ tests to run in the -gmodules configuration on Darwin.
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:
.../data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py | 4 ----
packages/Python/lldbsuite/test/make/Makefile.rules | 4 ++++
2 files 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 master
in repository llvm.
from 02b91a8b773 Fix the Windows build in GlobalISel
new 6d4c271eeb2 [codeview] Emit S_FRAMEPROC and use S_DEFRANGE_FRAMEPOINTER_REL
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/llvm/CodeGen/MIRYamlMapping.h | 5 +
include/llvm/CodeGen/MachineFrameInfo.h | 13 +
include/llvm/DebugInfo/CodeView/CodeView.h | 13 +
include/llvm/DebugInfo/CodeView/SymbolRecord.h | 38 +--
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 196 ++++++++++---
lib/CodeGen/AsmPrinter/CodeViewDebug.h | 30 +-
lib/CodeGen/MIRParser/MIRParser.cpp | 1 +
lib/CodeGen/MIRPrinter.cpp | 2 +
lib/DebugInfo/CodeView/SymbolRecordMapping.cpp | 72 +++++
lib/Target/X86/X86FrameLowering.cpp | 1 +
test/CodeGen/MIR/Generic/frame-info.mir | 3 +
test/CodeGen/MIR/X86/diexpr-win32.mir | 31 +-
test/DebugInfo/COFF/asm.ll | 2 +-
test/DebugInfo/COFF/frameproc-flags.ll | 379 +++++++++++++++++++++++++
test/DebugInfo/COFF/local-variables.ll | 45 +--
test/DebugInfo/COFF/multifile.ll | 4 +-
test/DebugInfo/COFF/multifunction.ll | 86 +++++-
test/DebugInfo/COFF/pieces.ll | 10 +-
test/DebugInfo/COFF/simple.ll | 34 ++-
test/DebugInfo/COFF/types-array.ll | 7 +-
test/DebugInfo/COFF/vframe-fpo.ll | 264 +++++++++++++++++
test/DebugInfo/X86/dbg-declare-inalloca.ll | 21 +-
test/MC/ARM/coff-debugging-secrel.ll | 4 +-
23 files changed, 1099 insertions(+), 162 deletions(-)
create mode 100644 test/DebugInfo/COFF/frameproc-flags.ll
create mode 100644 test/DebugInfo/COFF/vframe-fpo.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 clang.
from e6ebeaaf48 [MinGW] Allow using ASan
new a866fe7bf7 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 | 18 +++++----
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, 348 insertions(+), 89 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 d8de965221a Recommit r343499 "[X86] Enable load folding in the test shr [...]
new 02b91a8b773 Fix the Windows build in GlobalISel
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/GlobalISel/CombinerHelper.cpp | 13 ++++++-------
1 file changed, 6 insertions(+), 7 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 e467ad47eaa [InstCombine] add inverse test for vector trunc canonical f [...]
new 6ba8c38c500 Recommit r343498 "[X86] Improve test instruction shrinking [...]
new d8de965221a Recommit r343499 "[X86] Enable load folding in the test shr [...]
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/X86/X86ISelDAGToDAG.cpp | 60 +++++++++++++++++-----
test/CodeGen/X86/2010-08-04-MaskedSignedCompare.ll | 3 +-
test/CodeGen/X86/test-shrink.ll | 49 ++++++------------
3 files changed, 62 insertions(+), 50 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 66746002 [clang-query] Test non-code-completion on single letter shortcuts
new 35eb918a Sort expected test output after previous 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:
unittests/clang-query/QueryParserTest.cpp | 12 ++++++------
1 file changed, 6 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 clang.
from 9af0395b6d Revert r343518.
new e6ebeaaf48 [MinGW] Allow using ASan
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/Driver/ToolChain.cpp | 4 +++-
lib/Driver/ToolChains/MinGW.cpp | 29 ++++++++++++++++++++++++++---
lib/Driver/ToolChains/MinGW.h | 2 ++
test/Driver/mingw-sanitizers.c | 11 +++++++++++
4 files changed, 42 insertions(+), 4 deletions(-)
create mode 100644 test/Driver/mingw-sanitizers.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.