brintos

brintos / llvm-project-archived public Read only

0
0
Text · 729 B · afffba3 Raw
23 lines · c
1/*===---- mm3dnow.h - 3DNow! intrinsics ------------------------------------===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-exception6 *7 *===-----------------------------------------------------------------------===8 */9 10// 3dNow intrinsics are no longer supported.11 12#ifndef _MM3DNOW_H_INCLUDED13#define _MM3DNOW_H_INCLUDED14 15#ifndef _CLANG_DISABLE_CRT_DEPRECATION_WARNINGS16#warning "The <mm3dnow.h> header is deprecated, and 3dNow! intrinsics are unsupported. For other intrinsics, include <x86intrin.h>, instead."17#endif18 19#include <mmintrin.h>20#include <prfchwintrin.h>21 22#endif23