This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gdb-7.12-branch
in repository binutils-gdb.
from cb8c9c7 Automatic date update in version.in
new 5f768f6 Automatic date update in version.in
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/version.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 binutils-2_27-branch
in repository binutils-gdb.
from fd813b0 Automatic date update in version.in
new 6e8cb6b Automatic date update in version.in
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/version.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 6224e33 Update Compiler.h to fail fast when building with MSVC 2013
new 04e3307 Next set of additional error checks for invalid Mach-O files [...]
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/llvm/Support/MachO.h | 175 +++++++++++++++++++++
lib/Object/MachOObjectFile.cpp | 113 +++++++++++++
.../Inputs/macho-invalid-thread-count-pastend | Bin 0 -> 40 bytes
.../Object/Inputs/macho-invalid-thread-count-wrong | Bin 0 -> 48 bytes
.../Inputs/macho-invalid-thread-flavor-unknown | Bin 0 -> 48 bytes
.../Inputs/macho-invalid-thread-state-pastend | Bin 0 -> 48 bytes
.../Inputs/macho-invalid-thread-unknown-cputype | Bin 0 -> 48 bytes
.../Inputs/macho-invalid-unixthread-more-than-one | Bin 0 -> 396 bytes
test/Object/macho-invalid.test | 18 +++
9 files changed, 306 insertions(+)
create mode 100644 test/Object/Inputs/macho-invalid-thread-count-pastend
create mode 100644 test/Object/Inputs/macho-invalid-thread-count-wrong
create mode 100644 test/Object/Inputs/macho-invalid-thread-flavor-unknown
create mode 100644 test/Object/Inputs/macho-invalid-thread-state-pastend
create mode 100644 test/Object/Inputs/macho-invalid-thread-unknown-cputype
create mode 100644 test/Object/Inputs/macho-invalid-unixthread-more-than-one
--
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 3582f43 Use noexcept instead of LLVM_NOEXCEPT now that all compilers [...]
new 9dc2380 Extend hack to work around bad exception specifications for ' [...]
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/Sema/SemaExceptionSpec.cpp | 29 +++++++++++++++++++++--------
test/SemaCXX/libstdcxx_pair_swap_hack.cpp | 18 ++++++++++++++++--
2 files changed, 37 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 lld.
from 080869e Don't call markLiveAt for non alloc sections.
new ba2ca4b [ELF] Replace std::pair with a struct so we have proper names. NFC.
new 4270493 Use noexcept directly now that all compilers support it
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:
ELF/OutputSections.cpp | 61 ++++++++++++++++++++++++--------------------------
ELF/OutputSections.h | 11 ++++++---
lib/Core/Error.cpp | 4 ++--
3 files changed, 39 insertions(+), 37 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 f4ca0f5 Revert "DenseSet: Appease msc18 to define derived constructor [...]
new fa327ae [PGO] Fix a use-after-move. NFC.
new 6224e33 Update Compiler.h to fail fast when building with MSVC 2013
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/Compiler.h | 7 +++----
tools/llvm-profdata/llvm-profdata.cpp | 3 ++-
2 files changed, 5 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 lldb.
from e08ce26 Simplify GetGlobalProperties functions of Thread/Process/Target
new 014d13f Add lldb register definitions for w0-w28, s0-s31, and d0-d31 [...]
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:
.../Utility/RegisterContextDarwin_arm64.cpp | 130 +-
.../Utility/RegisterContextFreeBSD_arm64.cpp | 6 +-
.../Process/Utility/RegisterContextLinux_arm64.cpp | 6 +-
.../Plugins/Process/Utility/RegisterInfos_arm64.h | 1859 +++++++++++++++++---
4 files changed, 1752 insertions(+), 249 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 57c31dd [cmake] Follow LLVM's lead in creating exported tool targets [...]
new 3582f43 Use noexcept instead of LLVM_NOEXCEPT now that all compilers [...]
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/clang/AST/Attr.h | 9 ++++-----
include/clang/AST/Stmt.h | 14 +++++++-------
include/clang/Format/Format.h | 2 +-
include/clang/Lex/PreprocessingRecord.h | 22 +++++++++++-----------
include/clang/Lex/Preprocessor.h | 4 ++--
include/clang/Sema/Sema.h | 4 ++--
include/clang/Sema/SemaInternal.h | 6 +++---
lib/Format/Format.cpp | 2 +-
lib/Frontend/SerializedDiagnosticReader.cpp | 2 +-
utils/TableGen/ClangDiagnosticsEmitter.cpp | 5 ++---
10 files changed, 34 insertions(+), 36 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 9290bf2 Avoid using grep command in a test.
new 5932188 Read an expression in the form of "ABSOLUTE(<expr>) op <expr> ...".
new 080869e Don't call markLiveAt for non alloc sections.
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:
ELF/InputSection.cpp | 3 ++-
ELF/InputSection.h | 5 ++++-
ELF/LinkerScript.cpp | 4 +++-
ELF/MarkLive.cpp | 11 ++++++-----
test/ELF/linkerscript/absolute.s | 18 ++++++++++++++++++
5 files changed, 33 insertions(+), 8 deletions(-)
create mode 100644 test/ELF/linkerscript/absolute.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 c887230 [PGO] Fix bogus warning for merging empty llvm profile file
new dee834c Update docs to reflect new minimum MSVC version requirement
new f4ca0f5 Revert "DenseSet: Appease msc18 to define derived constructor [...]
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:
docs/CodingStandards.rst | 6 +-----
docs/GettingStarted.rst | 6 +++---
docs/GettingStartedVS.rst | 4 ++--
include/llvm/ADT/DenseSet.h | 12 ------------
4 files changed, 6 insertions(+), 22 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.