This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 797624f8264 Reverting r336322 for now, as it causes an assert failure i [...]
new e816e742162 [NEON] Fix combining of vldx_dup intrinsics with updating o [...]
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/ARM/ARMISelLowering.cpp | 6 +++++
test/CodeGen/ARM/arm-vlddup-update.ll | 43 +++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
create mode 100644 test/CodeGen/ARM/arm-vlddup-update.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 7949a02c [clangd] Treat class constructor as in the same scope as the [...]
new f13d8ce8 Revert "[clangd] FileDistance: temporarily disable in CodeCom [...]
new 0943c32a [clangd] Log sema completion context kind and query scopes. 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:
clangd/CodeComplete.cpp | 14 ++++++++++----
1 file changed, 10 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 gcc.
from d84544dc75a Fix my yesterday ChangeLog entry.
new ae2931553bf [testsuite] Simplify dg-final
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 | 4 ++++
gcc/testsuite/lib/gcc-dg.exp | 11 ++++-------
2 files changed, 8 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 0e87e9463a9 [AArch64][SVE] Asm: Support for signed/unsigned MIN/MAX/ABD
new 802e5e3d9a8 [ARM] ParallelDSP: only support i16 loads for now
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/ARM/ARMParallelDSP.cpp | 53 ++++++++++++++++++---------------------
test/CodeGen/ARM/smlad1.ll | 47 +++++++++++++++++++++++++++++++++-
2 files changed, 71 insertions(+), 29 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 f12ca716 [clangd] Track origins of symbols (various indexes, Sema).
new 7949a02c [clangd] Treat class constructor as in the same scope as the [...]
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:
clangd/Quality.cpp | 5 +++++
unittests/clangd/QualityTests.cpp | 28 ++++++++++++++++++++++++++++
unittests/clangd/TestTU.cpp | 23 ++++++++++++++++-------
unittests/clangd/TestTU.h | 3 +++
4 files changed, 52 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 5f1cfe90f3e [X86] Remove X86 specific scalar FMA intrinsics and upgrade [...]
new bd76e146be4 [Power9] Optimize codgen for conversions of int to float128
new 0e87e9463a9 [AArch64][SVE] Asm: Support for signed/unsigned MIN/MAX/ABD
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/AArch64InstrFormats.td | 6 ++
lib/Target/AArch64/AArch64SVEInstrInfo.td | 12 +++
lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 3 +
lib/Target/AArch64/SVEInstrFormats.td | 32 ++++++
lib/Target/PowerPC/PPCInstrVSX.td | 17 +++
test/CodeGen/PowerPC/f128-conv.ll | 126 ++++++++++++++++++++++
test/CodeGen/PowerPC/f128-passByValue.ll | 20 ++--
test/MC/AArch64/SVE/sabd-diagnostics.s | 6 ++
test/MC/AArch64/SVE/sabd.s | 32 ++++++
test/MC/AArch64/SVE/smax-diagnostics.s | 16 +++
test/MC/AArch64/SVE/smax.s | 80 ++++++++++++++
test/MC/AArch64/SVE/smin-diagnostics.s | 16 +++
test/MC/AArch64/SVE/smin.s | 80 ++++++++++++++
test/MC/AArch64/SVE/uabd-diagnostics.s | 6 ++
test/MC/AArch64/SVE/uabd.s | 32 ++++++
test/MC/AArch64/SVE/umax-diagnostics.s | 16 +++
test/MC/AArch64/SVE/umax.s | 80 ++++++++++++++
test/MC/AArch64/SVE/umin-diagnostics.s | 16 +++
test/MC/AArch64/SVE/umin.s | 80 ++++++++++++++
19 files changed, 666 insertions(+), 10 deletions(-)
create mode 100644 test/MC/AArch64/SVE/sabd-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/sabd.s
create mode 100644 test/MC/AArch64/SVE/smax-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/smax.s
create mode 100644 test/MC/AArch64/SVE/smin-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/smin.s
create mode 100644 test/MC/AArch64/SVE/uabd-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/uabd.s
create mode 100644 test/MC/AArch64/SVE/umax-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/umax.s
create mode 100644 test/MC/AArch64/SVE/umin-diagnostics.s
create mode 100644 test/MC/AArch64/SVE/umin.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 master
in repository llvm.
from d50e092736e [Power9] Add tests for passing float128 in VSX reg for non- [...]
new e5da5ca56a2 [Power9][NFC] add back-end tests for passing homogeneous fp [...]
new 5f1cfe90f3e [X86] Remove X86 specific scalar FMA intrinsics and upgrade [...]
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/IR/IntrinsicsX86.td | 8 -
lib/IR/AutoUpgrade.cpp | 85 ++++-----
lib/Target/X86/X86IntrinsicsInfo.h | 2 -
lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 -
.../InstCombine/InstCombineSimplifyDemanded.cpp | 2 -
test/CodeGen/PowerPC/f128-aggregates.ll | 190 ++++++++++++++++++++-
test/CodeGen/X86/avx2-fma-fneg-combine.ll | 8 +-
test/CodeGen/X86/fma-commute-x86.ll | 32 ++--
test/CodeGen/X86/fma-intrinsics-x86.ll | 112 ++++++------
test/CodeGen/X86/fma-scalar-memfold.ll | 40 ++---
test/Transforms/InstCombine/X86/x86-fma.ll | 94 ++++++----
11 files changed, 388 insertions(+), 187 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 c7bc4c373ce [demangler] Avoid alignment warning
new d50e092736e [Power9] Add tests for passing float128 in VSX reg for non- [...]
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/CodeGen/PowerPC/f128-aggregates.ll | 206 ++++++++++++++++++++++++++++++++
1 file changed, 206 insertions(+)
create mode 100644 test/CodeGen/PowerPC/f128-aggregates.ll
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.