This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 0cb5f9bfc1a DWARFVerifier: Basic verification of .debug_names
new 772c9bccc0f [InstSimplify] add more tests for FP undef; NFC
new 2f86ce800e6 [InstCombine] regenerate checks; 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:
test/Transforms/InstCombine/fsub.ll | 56 +++--
test/Transforms/InstSimplify/fp-undef.ll | 376 +++++++++++++++++++++++++++++++
2 files changed, 409 insertions(+), 23 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 2d7b817ab [lldbtestsuite] llvm-objcopy is now required to run the lit tests.
new ea6ad4c2a [LLDB][PPC64] Fix single step and LldbGdbServer tests
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:
.../Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py | 2 +-
.../Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | 7 ++++---
packages/Python/lldbsuite/test/tools/lldb-server/main.cpp | 8 ++++++--
3 files changed, 11 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 llvm.
from a7c94b20187 [cmake] Append -Wl,-rpath-link conditionally to GNULD
new 65d5f36900e [llvm-mca] Emit the 'Instruction Info' table before the res [...]
new 0cb5f9bfc1a DWARFVerifier: Basic verification of .debug_names
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:
.../llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h | 20 ++--
include/llvm/DebugInfo/DWARF/DWARFVerifier.h | 18 ++++
lib/DebugInfo/DWARF/DWARFVerifier.cpp | 87 ++++++++++++++++
.../X86/debug-names-verify-abbrev-duplicate.s | 64 ++++++++++++
.../X86/debug-names-verify-abbrev-short.s | 53 ++++++++++
.../X86/debug-names-verify-buckets.s | 83 ++++++++++++++++
.../X86/debug-names-verify-cu-lists.s | 110 +++++++++++++++++++++
.../llvm-dwarfdump/X86/debug-names-verify-short1.s | 47 +++++++++
.../llvm-dwarfdump/X86/debug-names-verify-short2.s | 49 +++++++++
.../llvm-dwarfdump/X86/debug-names-verify-short3.s | 52 ++++++++++
test/tools/llvm-mca/ARM/simple-test-cortex-a9.s | 23 ++---
test/tools/llvm-mca/X86/BtVer2/dot-product.s | 28 +++---
test/tools/llvm-mca/X86/BtVer2/load-store-alias.s | 37 +++----
test/tools/llvm-mca/X86/BtVer2/memcpy-like-test.s | 38 +++----
test/tools/llvm-mca/X86/BtVer2/simple-test.s | 24 ++---
tools/llvm-mca/BackendPrinter.cpp | 6 +-
16 files changed, 658 insertions(+), 81 deletions(-)
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-abbrev-duplicate.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-abbrev-short.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-buckets.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-cu-lists.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-short1.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-short2.s
create mode 100644 test/tools/llvm-dwarfdump/X86/debug-names-verify-short3.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 clang-tools-extra.
from 86622a73 [Documentation] Fix Clang-tidy checks list broken in r326909.
new ae80c07c [clangd:vscode] Resolve symlinks for file paths from clangd.
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/clients/clangd-vscode/src/extension.ts | 22 +++++++++++++++++-----
1 file changed, 17 insertions(+), 5 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 4890a84991 [clang-format] Use NestedBlockIndent as a 0 column in format [...]
new f9b96cd2d9 [OPENMP] Emit sizes/init ptrs etc. data for task reductions [...]
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/CGStmtOpenMP.cpp | 20 ++++++++++----------
test/OpenMP/task_in_reduction_codegen.cpp | 2 ++
test/OpenMP/taskloop_reduction_codegen.cpp | 11 +++++++++++
3 files changed, 23 insertions(+), 10 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 a3b56b24e78 [InstCombine, NewGVN] remove FP undef from tests
new a7c94b20187 [cmake] Append -Wl,-rpath-link conditionally to GNULD
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:
cmake/modules/AddLLVM.cmake | 3 ++-
1 file changed, 2 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 libcxx.
from 66c652fe0 Include <system_error> since we use it. Thanks to Andrey Maks [...]
new 46b8a51b4 Implement LWG#2518 - Non-member swap for propagate_const shou [...]
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/experimental/propagate_const | 3 +--
www/cxx1z_status.html | 4 ++--
2 files changed, 3 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 lld.
from 586cf453d [ELF] - Support "INSERT AFTER" statement.
new ff713e788 [ELF] - Fix crash relative to SHF_LINK_ORDER sections.
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/InputFiles.cpp | 11 +++++++++--
ELF/InputSection.cpp | 12 +++---------
ELF/OutputSections.cpp | 3 ++-
test/ELF/section-metadata-err.s | 4 ++--
test/ELF/section-metadata-err2.s | 17 +++++++++++++++++
test/ELF/section-metadata-err3.s | 17 +++++++++++++++++
6 files changed, 50 insertions(+), 14 deletions(-)
create mode 100644 test/ELF/section-metadata-err2.s
create mode 100644 test/ELF/section-metadata-err3.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 1b572164989 [CMake] Add missing test dependency
new a3b56b24e78 [InstCombine, NewGVN] remove FP undef from tests
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/select-crash.ll | 2 +-
test/Transforms/NewGVN/pr32607.ll | 4 ++--
2 files changed, 3 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 lld.
from aeaac92f0 [COFF] Make the DOS stub a real DOS program
new 586cf453d [ELF] - Support "INSERT AFTER" statement.
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/Driver.cpp | 4 ++++
ELF/LinkerScript.cpp | 20 ++++++++++++++++
ELF/LinkerScript.h | 7 ++++++
ELF/ScriptParser.cpp | 13 ++++++++++-
test/ELF/linkerscript/Inputs/insert-after.s | 11 +++++++++
test/ELF/linkerscript/Inputs/insert-after.script | 4 ++++
test/ELF/linkerscript/insert-after.test | 29 ++++++++++++++++++++++++
7 files changed, 87 insertions(+), 1 deletion(-)
create mode 100644 test/ELF/linkerscript/Inputs/insert-after.s
create mode 100644 test/ELF/linkerscript/Inputs/insert-after.script
create mode 100644 test/ELF/linkerscript/insert-after.test
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.