| 1 | //===----- yvals_core.h - Internal MSVC STL core header -------------------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | // Only include this if we are aiming for MSVC compatibility. |
| 10 | #ifndef _MSC_VER |
| 11 | #include_next <yvals_core.h> |
| 12 | #else |
| 13 | |
| 14 | #ifndef __clang_yvals_core_h |
| 15 | #define __clang_yvals_core_h |
| 16 | |
| 17 | #include_next <yvals_core.h> |
| 18 | |
| 19 | #ifdef _STL_INTRIN_HEADER |
| 20 | #undef _STL_INTRIN_HEADER |
| 21 | #define _STL_INTRIN_HEADER <intrin0.h> |
| 22 | #endif |
| 23 | |
| 24 | #endif |
| 25 | #endif |