This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from e753a97 Add support for __builtin_os_log_format[_buffer_size]
new 83cbe6f Fix bug where one of the cases where we mangle a <bare-unreso [...]
new 7d8886e CodeGen: centralise label construction for method lists
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/AST/ItaniumMangle.cpp | 56 ++++++++-------
lib/CodeGen/CGObjCMac.cpp | 166 +++++++++++++++++++++++++++++----------------
test/CodeGenCXX/mangle.cpp | 7 ++
3 files changed, 145 insertions(+), 84 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 b38de64 Adjust for TimePoint interface change in llvm: D25730. NFC
new 0d90ffe ELF: Simplify handling of *_start/*_end symbols.
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/Writer.cpp | 18 +++---------------
test/ELF/gc-sections.s | 6 ------
2 files changed, 3 insertions(+), 21 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 8dd4db3 [WebAssembly] Update opcode values according to recent spec changes.
new 777b045 [WebAssembly] Define the `end` opcode value.
new 459c4c4 [WebAssembly] Fix a broken URL.
new 0ca81d1 [pbqp] Delete some dead code, NFC.
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/CodeGen/PBQP/Graph.h | 16 ---
include/llvm/CodeGen/PBQP/Math.h | 143 +---------------------
include/llvm/CodeGen/PBQP/Solution.h | 32 -----
include/llvm/CodeGen/RegAllocPBQP.h | 76 +-----------
lib/Target/WebAssembly/README.txt | 2 +-
lib/Target/WebAssembly/WebAssemblyInstrControl.td | 6 +-
6 files changed, 10 insertions(+), 265 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 4992f51 Fix mangling of implicit calls to operator-> to only include [...]
new e753a97 Add support for __builtin_os_log_format[_buffer_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:
include/clang/Analysis/Analyses/FormatString.h | 47 ++--
include/clang/Analysis/Analyses/OSLog.h | 155 ++++++++++++++
include/clang/Basic/Builtins.def | 4 +
include/clang/Basic/DiagnosticSemaKinds.td | 15 ++
include/clang/Sema/Sema.h | 3 +
lib/Analysis/CMakeLists.txt | 1 +
lib/Analysis/FormatString.cpp | 3 +
lib/Analysis/OSLog.cpp | 177 +++++++++++++++
lib/Analysis/PrintfFormatString.cpp | 43 +++-
lib/CodeGen/CGBuiltin.cpp | 85 +++++++-
lib/Sema/SemaChecking.cpp | 286 +++++++++++++++++++------
lib/Sema/SemaDeclAttr.cpp | 29 +--
test/CodeGen/builtins.c | 141 +++++++++++-
test/CodeGenObjC/os_log.m | 39 ++++
test/SemaObjC/format-strings-oslog.m | 62 ++++++
15 files changed, 995 insertions(+), 95 deletions(-)
create mode 100644 include/clang/Analysis/Analyses/OSLog.h
create mode 100644 lib/Analysis/OSLog.cpp
create mode 100644 test/CodeGenObjC/os_log.m
create mode 100644 test/SemaObjC/format-strings-oslog.m
--
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 04b7f3d Add missing include in string_view tests. Patch from Billy ON [...]
new c4a7e91 Fix non-portable tests for temp_directory_path(...)
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:
.../fs.op.temp_dir_path/temp_directory_path.pass.cpp | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 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 1871c0f [WebAssembly] Add an option to make get_local/set_local explicit.
new 8dd4db3 [WebAssembly] Update opcode values according to recent spec changes.
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/WebAssembly/WebAssemblyInstrControl.td | 10 ++--
lib/Target/WebAssembly/WebAssemblyInstrConv.td | 50 +++++++++----------
lib/Target/WebAssembly/WebAssemblyInstrFloat.td | 40 +++++++--------
lib/Target/WebAssembly/WebAssemblyInstrInfo.td | 14 +++---
lib/Target/WebAssembly/WebAssemblyInstrInteger.td | 60 +++++++++++------------
lib/Target/WebAssembly/WebAssemblyInstrMemory.td | 50 +++++++++----------
6 files changed, 112 insertions(+), 112 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 16b762b Revert "Add support for __builtin_os_log_format[_buffer_size]"
new 4992f51 Fix mangling of implicit calls to operator-> to only include [...]
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/AST/ItaniumMangle.cpp | 5 ++++-
test/CodeGenCXX/mangle.cpp | 7 +++++++
2 files changed, 11 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 gcc-6-branch
in repository gcc.
from 2ea857c 2016-10-24 Steven G. Kargl <kargl(a)gcc.gnu.org>
new ffda94c 2016-10-24 Bernd Edlinger <bernd.edlinger(a)hotmail.de>
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 | 10 ++
gcc/testsuite/ChangeLog | 17 +++
gcc/testsuite/g++.dg/pr77550.C | 298 +++++++++++++++++++++++++++++++++++++++++
gcc/tree-vect-stmts.c | 96 +++++++++----
4 files changed, 392 insertions(+), 29 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/pr77550.C
--
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 4454393 Fix shadow warnings in string_view tests. Patch from STL@micr [...]
new 04b7f3d Add missing include in string_view tests. Patch from Billy ON [...]
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/std/strings/string.view/string.view.ops/copy.pass.cpp | 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 compiler-rt.
from 2f9cee4 [compiler-rt] moved __asan_schedule_unregister_globals out of [...]
new 5452863 scripts: Document existing problems with the symbolizer 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:
lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh | 6 ++++++
1 file changed, 6 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.