This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from ea87eb616e3 [InstCombine] fix matching of or-of-icmps constants (PR32524)
new 8b6100048eb [X86][MMX] Add fast-isel support for MMX non-temporal writes
new 0a52d06b894 [InstCombine] Use m_c_Add to shorten some code. Add testcas [...]
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/X86FastISel.cpp | 4 ++++
lib/Transforms/InstCombine/InstCombineAddSub.cpp | 3 +--
test/CodeGen/X86/fast-isel-nontemporal.ll | 2 +-
test/Transforms/InstCombine/sub.ll | 18 ++++++++++++++++++
4 files changed, 24 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 clang-tools-extra.
from 7ba61631 Revert "XFAIL clangd tests on Windows"
new aaba3da1 [clangd] Relax absolute path checking assertion
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/ASTManager.cpp | 4 +++-
1 file 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 95d726af975 Improves pretty printing of variable types in llvm-pdbdump
new ea87eb616e3 [InstCombine] fix matching of or-of-icmps constants (PR32524)
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/Transforms/InstCombine/InstCombineAndOrXor.cpp | 28 ++++++++++++----------
test/Transforms/InstCombine/or.ll | 7 +++---
2 files changed, 19 insertions(+), 16 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 5a0691bd [clangd] Fix nondeterminism in clangd test
new 6ccb2f62 XFAIL clangd tests on Windows
new 7ba61631 Revert "XFAIL clangd tests on Windows"
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:
--
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 7b424b94e3c 2017-04-10 Richard Biener <rguenther(a)suse.de>
new 61728404588 PR tree-optimization/80153 * tree-affine.c (aff_combinati [...]
new 3982b601c9d PR tree-optimization/80153 * tree-ssa-loop-ivopts.c (add_ [...]
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:
gcc/ChangeLog | 19 +++++++
gcc/testsuite/ChangeLog | 5 ++
gcc/testsuite/gcc.c-torture/execute/pr80153.c | 48 ++++++++++++++++
gcc/tree-affine.c | 80 ++++++++++-----------------
gcc/tree-ssa-loop-ivopts.c | 65 +++++++++-------------
5 files changed, 125 insertions(+), 92 deletions(-)
create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr80153.c
--
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 31ad416f00b [InstCombine] add test for PR32524; NFC
new 4ed87e3dc1f [InstCombine] Support folding of add instructions with vect [...]
new 95d726af975 Improves pretty printing of variable types in llvm-pdbdump
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/DebugInfo/PDB/PDBSymDumper.h | 16 +++
include/llvm/DebugInfo/PDB/PDBSymbol.h | 5 +
include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h | 1 +
.../llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h | 1 +
include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h | 1 +
lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp | 4 +
lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp | 4 +
lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp | 4 +
lib/Transforms/InstCombine/InstCombineAddSub.cpp | 9 +-
test/DebugInfo/PDB/DIA/pdbdump-linenumbers.test | 14 ++-
test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test | 15 ++-
test/DebugInfo/PDB/Inputs/symbolformat.cpp | 8 ++
test/DebugInfo/PDB/Inputs/symbolformat.pdb | Bin 35840 -> 44032 bytes
test/Transforms/InstCombine/add.ll | 9 +-
tools/llvm-pdbdump/PrettyBuiltinDumper.cpp | 4 +
tools/llvm-pdbdump/PrettyVariableDumper.cpp | 135 ++++++++++++---------
tools/llvm-pdbdump/PrettyVariableDumper.h | 6 +-
17 files changed, 159 insertions(+), 77 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 af6290684b9 [ARM] GlobalISel: Support G_FPOW for float and double
new 31ad416f00b [InstCombine] add test for PR32524; 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:
test/Transforms/InstCombine/or.ll | 16 +++++++++++++++-
1 file changed, 15 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 binutils-gdb.
from 28d909e539 Prevent a bigus warning from readelf about a gdb-index table [...]
new a5bef50fdb Fix PR gdb/21364: Dead code due to an unreachable condition [...]
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 | 6 ++++++
gdb/osdata.c | 2 +-
2 files changed, 7 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 binutils-2_28-branch
in repository binutils-gdb.
from ed3c25489f Automatic date update in version.in
new 5a0ac7ba3c ELF: Check ELF_COMMON_DEF_P for common symbols
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:
bfd/ChangeLog | 12 ++++++++++++
bfd/elf32-s390.c | 2 +-
bfd/elf64-s390.c | 2 +-
bfd/elf64-x86-64.c | 3 ++-
bfd/elflink.c | 7 ++-----
ld/ChangeLog | 6 ++++++
ld/testsuite/ld-elf/pr19579a.c | 2 +-
7 files changed, 25 insertions(+), 9 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 c7463a577 Mark this test as XFAIL on all platforms, it's happening ever [...]
new ece5dcb36 [lldb] Fix ninja URL
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:
www/build.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.