This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository lldb.
from 8c56ccd [unittests] Split DWARF tests out of PDB, fix standalone build
new 336941f XFail TestNoreturnUnwind for arm targets
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:
.../lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py | 1 +
1 file changed, 1 insertion(+)
--
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 dcdec3c NewGVN: Fix some formatting and comment issues
new ad8be68 [NewGVN] Restore old code to placate buildbots.
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/Scalar/NewGVN.cpp | 8 ++++++--
1 file changed, 6 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 libcxx.
from 864ad6d chrono: address post commit comments from Howard
new f7f9eff locale: update ctype access for MSVC CRT 14+
new b3f4bdf chrono: correct the units for the epoch bias
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/support/win32/locale_win32.h | 6 +++++-
src/chrono.cpp | 3 +--
src/locale.cpp | 11 +++++++++--
3 files changed, 15 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 llvm.
from 9af2e4e Emit .cfi_sections before the first .cfi_startproc
new a50b783 [cmake] Add LLVM_ENABLE_DIA_SDK option, and expose it in LLVMConfig
new dcdec3c NewGVN: Fix some formatting and comment issues
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/config-ix.cmake | 9 ++++++++-
cmake/modules/LLVMConfig.cmake.in | 2 ++
docs/CMake.rst | 4 ++++
include/llvm/Config/config.h.cmake | 2 +-
lib/DebugInfo/PDB/CMakeLists.txt | 2 +-
lib/DebugInfo/PDB/PDB.cpp | 6 +++---
lib/Transforms/Scalar/NewGVN.cpp | 26 ++++++++------------------
test/lit.site.cfg.in | 2 +-
8 files changed, 28 insertions(+), 25 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 fb9ad0f Fix the variable view in the "gui" curses mode so that variab [...]
new 8c56ccd [unittests] Split DWARF tests out of PDB, fix standalone build
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:
unittests/SymbolFile/CMakeLists.txt | 5 +-
unittests/SymbolFile/DWARF/CMakeLists.txt | 8 ++
.../{PDB => DWARF}/Inputs/test-dwarf.cpp | 0
.../{PDB => DWARF}/Inputs/test-dwarf.exe | Bin
.../SymbolFile/DWARF/SymbolFileDWARFTests.cpp | 83 +++++++++++++++++++++
unittests/SymbolFile/PDB/CMakeLists.txt | 3 +-
unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp | 61 +++++----------
7 files changed, 113 insertions(+), 47 deletions(-)
create mode 100644 unittests/SymbolFile/DWARF/CMakeLists.txt
rename unittests/SymbolFile/{PDB => DWARF}/Inputs/test-dwarf.cpp (100%)
rename unittests/SymbolFile/{PDB => DWARF}/Inputs/test-dwarf.exe (100%)
create mode 100644 unittests/SymbolFile/DWARF/SymbolFileDWARFTests.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 85f8cbc [PMBuilder] Remove RunFloat2Int cl::opt.
new 61cf41c NewGVN: Fix PR31480, PR31483, PR31499, by rewriting how memor [...]
new 2c8e9c4 NewGVN: Add UnknownExpression and create them for things we c [...]
new 9af2e4e Emit .cfi_sections before the first .cfi_startproc
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/Transforms/Scalar/GVNExpression.h | 35 +++++
lib/CodeGen/AsmPrinter/ARMException.cpp | 13 +-
lib/CodeGen/AsmPrinter/DwarfCFIException.cpp | 17 +--
lib/CodeGen/AsmPrinter/DwarfException.h | 6 +-
lib/Transforms/Scalar/NewGVN.cpp | 202 ++++++++++++++++++++-----
test/CodeGen/ARM/early-cfi-sections.ll | 31 ++++
test/CodeGen/ARM/no-cfi.ll | 24 +++
test/CodeGen/X86/early-cfi-sections.ll | 28 ++++
8 files changed, 298 insertions(+), 58 deletions(-)
create mode 100644 test/CodeGen/ARM/early-cfi-sections.ll
create mode 100644 test/CodeGen/ARM/no-cfi.ll
create mode 100644 test/CodeGen/X86/early-cfi-sections.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 6c20767 Fixed shuffle-reverse cost on AVX-512.
new 85f8cbc [PMBuilder] Remove RunFloat2Int cl::opt.
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/IPO/PassManagerBuilder.cpp | 7 +------
1 file changed, 1 insertion(+), 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 clang.
from 60fb868 Revert "DR1391: Check for implicit conversion sequences for n [...]
new 74e1e75 [OpenMP] Add test cases for the proc_bind and schedule clause [...]
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:
..._distribute_parallel_for_proc_bind_messages.cpp | 85 ++++++++++
...s_distribute_parallel_for_schedule_messages.cpp | 172 +++++++++++++++++++++
2 files changed, 257 insertions(+)
create mode 100644 test/OpenMP/teams_distribute_parallel_for_proc_bind_messages.cpp
create mode 100644 test/OpenMP/teams_distribute_parallel_for_schedule_messages.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 gcc.
from cb486a1 * doc/xml/faq.xml: Update address of C++ ABI link. * doc/xm [...]
new ead616e * doc/cfg.texi (Edges): Remove reference to Java. (Maintain [...]
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/ChangeLog | 5 +++++
gcc/doc/cfg.texi | 5 ++---
2 files changed, 7 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 glibc.
from 73dfd08 support: struct netent portability fix for support_format_netent
new dcf83b5 Make build-many-glibcs.py use binutils 2.28 branch by default.
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:
ChangeLog | 5 +++++
scripts/build-many-glibcs.py | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.