This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 6d5fc4344ca Revert "Reland "[LLVM][llvm-objcopy] Added basic plumbing t [...]
new 8330752796b [libFuzzer] don't disable msan for TracePC::CollectFeatures [...]
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/Fuzzer/FuzzerTracePC.h | 2 +-
1 file changed, 1 insertion(+), 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 25220464477 Debug Info: Support fragmented variables in the MMI side table
new 7cfa553c078 Revert "Debug Info: Support fragmented variables in the MMI [...]
new 6d5fc4344ca Revert "Reland "[LLVM][llvm-objcopy] Added basic plumbing t [...]
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/CodeGen/AsmPrinter/DwarfDebug.cpp | 7 +-
test/CMakeLists.txt | 1 -
test/DebugInfo/X86/fi-piece.ll | 51 ----
test/tools/llvm-objcopy/basic-copy.test | 47 ----
test/tools/llvm-objcopy/empty-section.test | 55 -----
test/tools/llvm-objcopy/program-headers.test | 68 ------
tools/LLVMBuild.txt | 1 -
tools/llvm-objcopy/CMakeLists.txt | 9 -
tools/llvm-objcopy/LLVMBuild.txt | 21 --
tools/llvm-objcopy/Object.cpp | 341 ---------------------------
tools/llvm-objcopy/Object.h | 150 ------------
tools/llvm-objcopy/llvm-objcopy.cpp | 99 --------
tools/llvm-objcopy/llvm-objcopy.h | 32 ---
13 files changed, 1 insertion(+), 881 deletions(-)
delete mode 100644 test/DebugInfo/X86/fi-piece.ll
delete mode 100644 test/tools/llvm-objcopy/basic-copy.test
delete mode 100644 test/tools/llvm-objcopy/empty-section.test
delete mode 100644 test/tools/llvm-objcopy/program-headers.test
delete mode 100644 tools/llvm-objcopy/CMakeLists.txt
delete mode 100644 tools/llvm-objcopy/LLVMBuild.txt
delete mode 100644 tools/llvm-objcopy/Object.cpp
delete mode 100644 tools/llvm-objcopy/Object.h
delete mode 100644 tools/llvm-objcopy/llvm-objcopy.cpp
delete mode 100644 tools/llvm-objcopy/llvm-objcopy.h
--
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 35abed6401 Fix a bot by linking clang-import-test against libclangDriver
new 7acd9fa108 [StaticAnalyzer] LoopUnrolling - Attempt to fix a crash in r309006.
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/StaticAnalyzer/Core/LoopUnrolling.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 960873b10dd Reland "[LLVM][llvm-objcopy] Added basic plumbing to get th [...]
new 25220464477 Debug Info: Support fragmented variables in the MMI side table
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/DwarfDebug.cpp | 7 ++++-
test/DebugInfo/X86/fi-piece.ll | 51 +++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+), 1 deletion(-)
create mode 100644 test/DebugInfo/X86/fi-piece.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 llvm.
from 35647a1478c [CMake] Fix broken builds from r309029
new 9ed22432b47 [CMAKE] Speedup developer builds when passing LLVM_APPEND_V [...]
new 960873b10dd Reland "[LLVM][llvm-objcopy] Added basic plumbing to get th [...]
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/Support/CMakeLists.txt | 32 ++-
test/CMakeLists.txt | 1 +
test/tools/llvm-objcopy/basic-copy.test | 47 ++++
test/tools/llvm-objcopy/empty-section.test | 55 +++++
test/tools/llvm-objcopy/program-headers.test | 68 ++++++
tools/LLVMBuild.txt | 1 +
tools/llvm-objcopy/CMakeLists.txt | 9 +
tools/{ => llvm-objcopy}/LLVMBuild.txt | 45 +---
tools/llvm-objcopy/Object.cpp | 341 +++++++++++++++++++++++++++
tools/llvm-objcopy/Object.h | 150 ++++++++++++
tools/llvm-objcopy/llvm-objcopy.cpp | 99 ++++++++
tools/llvm-objcopy/llvm-objcopy.h | 32 +++
12 files changed, 831 insertions(+), 49 deletions(-)
create mode 100644 test/tools/llvm-objcopy/basic-copy.test
create mode 100644 test/tools/llvm-objcopy/empty-section.test
create mode 100644 test/tools/llvm-objcopy/program-headers.test
create mode 100644 tools/llvm-objcopy/CMakeLists.txt
copy tools/{ => llvm-objcopy}/LLVMBuild.txt (52%)
create mode 100644 tools/llvm-objcopy/Object.cpp
create mode 100644 tools/llvm-objcopy/Object.h
create mode 100644 tools/llvm-objcopy/llvm-objcopy.cpp
create mode 100644 tools/llvm-objcopy/llvm-objcopy.h
--
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 compiler-rt.
from 2295a0eb5 [ubsan] -fsanitize=vptr now requires -fsanitize=null, update tests
new 77afdbc0a [scudo] Check for pvalloc overflow
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/sanitizer_common/sanitizer_allocator_checks.h | 6 +++
lib/scudo/scudo_allocator.cpp | 4 ++
test/scudo/memalign.cpp | 14 ++---
test/scudo/valloc.cpp | 63 +++++++++++++++++++++++
4 files changed, 80 insertions(+), 7 deletions(-)
create mode 100644 test/scudo/valloc.cpp
--
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 6044a148c62 AMDGPU/SI: Fix Depth and Height computation for SI scheduler
new 02829e6c9c7 [CMake] Allow TableGen.cmake to be included multiple times
new 35647a1478c [CMake] Fix broken builds from r309029
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:
cmake/modules/TableGen.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 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 bf4f61c0a3d Remove deprecated iostream members for C++17
new a04c40d4825 PR libstdc++/53984 handle exceptions in basic_istream::sentry
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:
libstdc++-v3/ChangeLog | 9 ++++
libstdc++-v3/include/bits/basic_ios.h | 4 +-
libstdc++-v3/include/bits/istream.tcc | 50 +++++++++++++---------
libstdc++-v3/include/std/istream | 12 +++---
.../79162.cc => 27_io/basic_fstream/53984.cc} | 18 +++++---
.../sentry/char/53984.cc} | 23 +++++-----
6 files changed, 71 insertions(+), 45 deletions(-)
copy libstdc++-v3/testsuite/{21_strings/basic_string/cons/wchar_t/79162.cc => 27_i [...]
copy libstdc++-v3/testsuite/27_io/{basic_stringstream/assign/81338.cc => basic_ist [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.