This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from 4f97b44dc0 Thread safety analysis: Allow relockable scopes
new 7930896ba3 [ASTImporter] Add test for ObjCAutoreleasePoolStmt
new a991a09bec [ASTImporter] Add test for SwitchStmt
new 56304207e9 [ASTImporter] Add test for ObjCTypeParamDecl
new 342aa6e5c2 [ASTImporter] Remove duplicated and dead CXXNamedCastExpr ha [...]
The 4 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/AST/ASTImporter.cpp | 32 ----------------
test/Import/objc-autoreleasepool/Inputs/F.m | 5 +++
test/Import/objc-autoreleasepool/test.m | 9 +++++
test/Import/objc-param-decl/Inputs/S.m | 5 +++
test/Import/objc-param-decl/test.m | 11 ++++++
test/Import/switch-stmt/Inputs/F.cpp | 18 +++++++++
test/Import/{for-stmt => switch-stmt}/test.cpp | 53 ++++++++++++--------------
7 files changed, 73 insertions(+), 60 deletions(-)
create mode 100644 test/Import/objc-autoreleasepool/Inputs/F.m
create mode 100644 test/Import/objc-autoreleasepool/test.m
create mode 100644 test/Import/objc-param-decl/Inputs/S.m
create mode 100644 test/Import/objc-param-decl/test.m
create mode 100644 test/Import/switch-stmt/Inputs/F.cpp
copy test/Import/{for-stmt => switch-stmt}/test.cpp (50%)
--
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 575895c12e1 [ARM] Lower llvm.ctlz.i32 to a libcall when clz is not available.
new 9e027f8824d [MemorySSA] Invalidate optimized Defs upon moving them; 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:
include/llvm/Analysis/MemorySSA.h | 1 +
lib/Analysis/MemorySSA.cpp | 19 ++++++++++++++-----
2 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 gcc.
from 2f4879251e9 2018-08-22 Thomas Koenig <tkoenig(a)gcc.gnu.org>
new 2e0303d60a9 PR libstdc++/78448 limit vector::max_size and deque::max_size
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 | 28 ++++
libstdc++-v3/include/bits/deque.tcc | 10 +-
libstdc++-v3/include/bits/stl_deque.h | 31 ++++-
libstdc++-v3/include/bits/stl_vector.h | 34 ++++-
libstdc++-v3/include/bits/vector.tcc | 1 +
.../23_containers/deque/capacity/max_size.cc | 146 +++++++++++++++++++++
.../23_containers/vector/capacity/max_size.cc | 146 +++++++++++++++++++++
7 files changed, 381 insertions(+), 15 deletions(-)
create mode 100644 libstdc++-v3/testsuite/23_containers/deque/capacity/max_size.cc
create mode 100644 libstdc++-v3/testsuite/23_containers/vector/capacity/max_size.cc
--
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 ab317c2ed Add unit test for StringLexer
new e70a99766 Add include directory for libxml on macOS
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/LLDBConfig.cmake | 3 +--
1 file changed, 1 insertion(+), 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 clang.
from 2c4b8ea78f [NFC] Test commit
new 4f97b44dc0 Thread safety analysis: Allow relockable scopes
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/Analysis/ThreadSafety.cpp | 30 ++++-
test/SemaCXX/warn-thread-safety-analysis.cpp | 164 +++++++++++++++++++++++++++
2 files changed, 192 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 llvm.
from 66ce6fc8af9 [SafeStack] Handle unreachable code with safe stack coloring.
new 8b3c688d993 [BinaryFormat] Add MessagePack reader/writer
new 575895c12e1 [ARM] Lower llvm.ctlz.i32 to a libcall when clz is not available.
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/BinaryFormat/MsgPack.def | 108 ++++
include/llvm/BinaryFormat/MsgPack.h | 93 +++
include/llvm/BinaryFormat/MsgPackReader.h | 148 +++++
include/llvm/BinaryFormat/MsgPackWriter.h | 131 ++++
include/llvm/IR/RuntimeLibcalls.def | 3 +
lib/BinaryFormat/CMakeLists.txt | 2 +
lib/BinaryFormat/MsgPackReader.cpp | 255 ++++++++
lib/BinaryFormat/MsgPackWriter.cpp | 208 +++++++
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 15 +
lib/Target/ARM/ARMISelLowering.cpp | 4 +-
test/CodeGen/ARM/clz.ll | 8 +-
unittests/BinaryFormat/CMakeLists.txt | 2 +
unittests/BinaryFormat/MsgPackReaderTest.cpp | 891 +++++++++++++++++++++++++++
unittests/BinaryFormat/MsgPackWriterTest.cpp | 523 ++++++++++++++++
14 files changed, 2387 insertions(+), 4 deletions(-)
create mode 100644 include/llvm/BinaryFormat/MsgPack.def
create mode 100644 include/llvm/BinaryFormat/MsgPack.h
create mode 100644 include/llvm/BinaryFormat/MsgPackReader.h
create mode 100644 include/llvm/BinaryFormat/MsgPackWriter.h
create mode 100644 lib/BinaryFormat/MsgPackReader.cpp
create mode 100644 lib/BinaryFormat/MsgPackWriter.cpp
create mode 100644 unittests/BinaryFormat/MsgPackReaderTest.cpp
create mode 100644 unittests/BinaryFormat/MsgPackWriterTest.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 39184e407cd bpf: fix an assertion in BPFAsmBackend applyFixup()
new 66ce6fc8af9 [SafeStack] Handle unreachable code with safe stack coloring.
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/SafeStackColoring.cpp | 4 +++-
test/Transforms/SafeStack/AArch64/{abi.ll => unreachable.ll} | 11 +++++++----
2 files changed, 10 insertions(+), 5 deletions(-)
copy test/Transforms/SafeStack/AArch64/{abi.ll => unreachable.ll} (76%)
--
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 f3dd725506a fix PR 86935
new 2f4879251e9 2018-08-22 Thomas Koenig <tkoenig(a)gcc.gnu.org>
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/fortran/ChangeLog | 6 ++++++
gcc/fortran/gfortran.texi | 3 ++-
libgfortran/ChangeLog | 6 ++++++
libgfortran/io/async.h | 23 +++++++++++++----------
4 files changed, 27 insertions(+), 11 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 c78d44c9d4e [WebAssembly] Don't write SP back when prolog is generated [...]
new 39184e407cd bpf: fix an assertion in BPFAsmBackend applyFixup()
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/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp | 9 ++++++++-
1 file changed, 8 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 cab386f9087 [ARM] Avoid injecting constant islands in movw+movt pairs o [...]
new 3553a3ccab0 [AST] Add a test for attribute intersection
new c78d44c9d4e [WebAssembly] Don't write SP back when prolog is generated [...]
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:
.../WebAssemblyEHRestoreStackPointer.cpp | 5 ++++
.../WebAssembly/WebAssemblyFrameLowering.cpp | 24 ++++++++++++++----
lib/Target/WebAssembly/WebAssemblyFrameLowering.h | 1 +
test/Analysis/AliasSet/argmemonly.ll | 18 ++++++++++++++
test/CodeGen/WebAssembly/exception.ll | 29 ++++++++++++++++++++++
5 files changed, 72 insertions(+), 5 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.