This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a2bd0ce Set the default C standard to C99 when targeting the PS4. new 47213cf Rework interface for bitset-using features to use a notion of [...]
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: docs/ControlFlowIntegrity.rst | 36 +++++---- docs/LTOVisibility.rst | 111 ++++++++++++++++++++++++++++ docs/UsersManual.rst | 13 +--- docs/index.rst | 1 + include/clang/Basic/Attr.td | 6 ++ include/clang/Basic/AttrDocs.td | 7 ++ include/clang/Driver/CC1Options.td | 3 + include/clang/Driver/Options.td | 3 - include/clang/Frontend/CodeGenOptions.def | 4 + include/clang/Frontend/CodeGenOptions.h | 3 - lib/CodeGen/CGClass.cpp | 9 ++- lib/CodeGen/CGVTables.cpp | 57 +++++++------- lib/CodeGen/CodeGenModule.cpp | 4 +- lib/CodeGen/CodeGenModule.h | 12 +-- lib/CodeGen/MicrosoftCXXABI.cpp | 17 ++--- lib/Driver/SanitizerArgs.cpp | 9 +++ lib/Driver/Tools.cpp | 39 ++++------ lib/Frontend/CompilerInvocation.cpp | 3 +- lib/Sema/SemaDeclAttr.cpp | 3 + runtime/CMakeLists.txt | 13 ---- runtime/vtables_blacklist.txt | 8 -- test/CodeGenCXX/bitset-blacklist.cpp | 32 -------- test/CodeGenCXX/bitset-inference.cpp | 107 +++++++++++++++++++++++++++ test/CodeGenCXX/bitsets.cpp | 16 ++-- test/CodeGenCXX/cfi-blacklist.cpp | 29 ++++++++ test/CodeGenCXX/cfi-cast.cpp | 34 ++++----- test/CodeGenCXX/cfi-cross-dso.cpp | 4 +- test/CodeGenCXX/cfi-ms-rtti.cpp | 4 +- test/CodeGenCXX/cfi-nvcall.cpp | 4 +- test/CodeGenCXX/cfi-stats.cpp | 2 +- test/Driver/cl-runtime-flags.c | 2 + test/Driver/fsanitize.c | 20 +++-- test/Driver/whole-program-vtables.c | 9 --- test/Frontend/dependency-gen.c | 2 +- test/SemaCXX/attr-lto-visibility-public.cpp | 14 ++++ utils/TableGen/ClangAttrEmitter.cpp | 1 + 36 files changed, 432 insertions(+), 209 deletions(-) create mode 100644 docs/LTOVisibility.rst delete mode 100644 runtime/vtables_blacklist.txt delete mode 100644 test/CodeGenCXX/bitset-blacklist.cpp create mode 100644 test/CodeGenCXX/bitset-inference.cpp create mode 100644 test/CodeGenCXX/cfi-blacklist.cpp create mode 100644 test/SemaCXX/attr-lto-visibility-public.cpp