This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from eea75dd [Reassociate] Remove an unused argument. NFC.
new ee262d8 NVPTX: Extract mem intrinsic expansions into utilities
new de0a868 GlobalISel: translate @llvm.va_start intrinsic.
new cc504e8 GlobalISel: select G_VASTART on iOS AArch64.
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:
include/llvm/Target/GenericOpcodes.td | 7 +
include/llvm/Target/TargetLowering.h | 5 +
include/llvm/Target/TargetOpcodes.def | 3 +
include/llvm/Transforms/Utils/LowerMemIntrinsics.h | 44 ++++
lib/CodeGen/GlobalISel/IRTranslator.cpp | 11 +
lib/Target/AArch64/AArch64CallLowering.cpp | 22 +-
lib/Target/AArch64/AArch64ISelLowering.cpp | 8 +
lib/Target/AArch64/AArch64ISelLowering.h | 3 +
lib/Target/AArch64/AArch64InstructionSelector.cpp | 36 ++++
lib/Target/AArch64/AArch64InstructionSelector.h | 8 +
lib/Target/AArch64/AArch64LegalizerInfo.cpp | 2 +
lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp | 224 +-------------------
lib/Transforms/Utils/CMakeLists.txt | 1 +
lib/Transforms/Utils/LowerMemIntrinsics.cpp | 231 +++++++++++++++++++++
.../AArch64/GlobalISel/varargs-ios-translator.ll | 16 ++
test/CodeGen/AArch64/GlobalISel/vastart.ll | 13 ++
16 files changed, 420 insertions(+), 214 deletions(-)
create mode 100644 include/llvm/Transforms/Utils/LowerMemIntrinsics.h
create mode 100644 lib/Transforms/Utils/LowerMemIntrinsics.cpp
create mode 100644 test/CodeGen/AArch64/GlobalISel/varargs-ios-translator.ll
create mode 100644 test/CodeGen/AArch64/GlobalISel/vastart.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-tools-extra.
from 2d0a949 [clang-tidy] hasErrorOccurred() -> hasUncompilableErrorOccurred()
new 1b3a2e8 [clang-tidy] Add -extra-arg and -extra-arg-before to clang-ti [...]
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/tool/clang-tidy-diff.py | 12 ++++++++++++
1 file changed, 12 insertions(+)
--
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_40
in repository clang-tools-extra.
from 93fb62b Merging r291892: -------------------------------------------- [...]
new 0e7141a Remove dead doxygen link
new 70bc9d1 Docs: drop minor version
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:
docs/conf.py | 4 ++--
docs/index.rst | 19 -------------------
2 files changed, 2 insertions(+), 21 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 binutils-gdb.
from 3d7b173 Command names: make them case sensitive
new 604c457 Command abbreviation in define
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:
gdb/ChangeLog | 9 ++++++
gdb/cli/cli-decode.c | 4 ++-
gdb/cli/cli-decode.h | 2 ++
gdb/cli/cli-script.c | 67 ++++++++++++++++++++++-----------------
gdb/testsuite/ChangeLog | 5 +++
gdb/testsuite/gdb.base/define.exp | 32 +++++++++++++++++++
6 files changed, 89 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 llvm.
from bddd841 [InstCombine] add test for missed vector icmp fold; NFC
new 5400f63 Fix bitcode upgrade for DIGlobalVariables with a var: field.
new eea75dd [Reassociate] Remove an unused argument. 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:
lib/Bitcode/Reader/MetadataLoader.cpp | 3 +--
lib/Transforms/Scalar/Reassociate.cpp | 9 ++++---
test/Bitcode/DIGlobalVariableExpression2.ll | 31 +++++++++++++++++++++++++
test/Bitcode/DIGlobalVariableExpression2.ll.bc | Bin 0 -> 864 bytes
4 files changed, 36 insertions(+), 7 deletions(-)
create mode 100644 test/Bitcode/DIGlobalVariableExpression2.ll
create mode 100644 test/Bitcode/DIGlobalVariableExpression2.ll.bc
--
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 binutils-gdb.
from cc16242 Fix segfault when .plt section does not exist
new 3d7b173 Command names: make them case sensitive
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:
gdb/ChangeLog | 5 +++++
gdb/cli/cli-decode.c | 27 ---------------------------
2 files changed, 5 insertions(+), 27 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 7d1045f Move inline asm diags tests to an ARM directory.
new bddd841 [InstCombine] add test for missed vector icmp fold; 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:
.../{2008-01-29-AddICmp.ll => icmp-add.ll} | 23 ++++++++++++++++++++++
test/Transforms/InstCombine/icmp.ll | 10 ----------
2 files changed, 23 insertions(+), 10 deletions(-)
rename test/Transforms/InstCombine/{2008-01-29-AddICmp.ll => icmp-add.ll} (75%)
--
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_40
in repository llvm.
from ba84ee4 Forgot to add this in r294473
new 366ce55 Merging r294348: -------------------------------------------- [...]
new 028af93 Merging r294349 and r294357: -------------------------------- [...]
new 9de7579 Release notes for ilist changes, by Duncan
new de3ccdd Merging r292949: -------------------------------------------- [...]
new af391fe Docs: drop minor version
The 5 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:
docs/ReleaseNotes.rst | 74 +++++++++++++++++++
docs/conf.py | 4 +-
include/llvm/ADT/ilist_iterator.h | 19 ++++-
include/llvm/CodeGen/MachineInstrBundleIterator.h | 17 +++++
include/llvm/Target/TargetInstrInfo.h | 19 -----
lib/CodeGen/BranchFolding.cpp | 37 ----------
lib/MC/MCCodeView.cpp | 12 +--
lib/Target/X86/X86ExpandPseudo.cpp | 21 +-----
lib/Target/X86/X86InstrControl.td | 31 --------
lib/Target/X86/X86InstrInfo.cpp | 79 --------------------
lib/Target/X86/X86InstrInfo.h | 7 --
lib/Target/X86/X86MCInstLower.cpp | 9 +--
test/CodeGen/X86/conditional-tailcall.ll | 53 --------------
test/CodeGen/X86/shrink-compare.ll | 6 +-
test/CodeGen/X86/tail-call-conditional.mir | 85 ----------------------
test/MC/COFF/cv-def-range-gap.s | 24 ++++++
unittests/ADT/IListIteratorTest.cpp | 40 ++++++++++
.../CodeGen/MachineInstrBundleIteratorTest.cpp | 64 ++++++++++++++++
18 files changed, 249 insertions(+), 352 deletions(-)
delete mode 100644 test/CodeGen/X86/conditional-tailcall.ll
delete mode 100644 test/CodeGen/X86/tail-call-conditional.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 gcc.
from ad0522d Update links and references in libstdc++ manual
new 3c814bc gcc/testsuite/ChangeLog:
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/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/g++.dg/cpp1y/vla-initlist1.C | 1 +
2 files changed, 7 insertions(+)
--
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_40
in repository lld.
from 9808eda Port r292160 and r292161.
new f18d7ad Docs: drop minor version
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:
docs/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.