This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from eeee4079f9 re-commit r361928: [PowerPC] [Clang] Port SSE intrinsics to PowerPC new 7c9c5922e0 [X86] Add VP2INTERSECT instructions
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/ClangCommandLineReference.rst | 2 + include/clang/Basic/BuiltinsX86.def | 6 ++ include/clang/Driver/Options.td | 2 + lib/Basic/Targets/X86.cpp | 8 +- lib/Basic/Targets/X86.h | 1 + lib/CodeGen/CGBuiltin.cpp | 42 +++++++++++ lib/Headers/CMakeLists.txt | 2 + lib/Headers/avx512vlvp2intersectintrin.h | 121 ++++++++++++++++++++++++++++++ lib/Headers/avx512vp2intersectintrin.h | 77 +++++++++++++++++++ lib/Headers/immintrin.h | 10 +++ test/CodeGen/attr-target-x86.c | 4 +- test/CodeGen/intel-avx512vlvp2intersect.c | 36 +++++++++ test/CodeGen/intel-avx512vp2intersect.c | 20 +++++ test/Driver/x86-target-features.c | 5 ++ test/Preprocessor/x86_target_features.c | 10 +++ 15 files changed, 343 insertions(+), 3 deletions(-) create mode 100644 lib/Headers/avx512vlvp2intersectintrin.h create mode 100644 lib/Headers/avx512vp2intersectintrin.h create mode 100644 test/CodeGen/intel-avx512vlvp2intersect.c create mode 100644 test/CodeGen/intel-avx512vp2intersect.c