1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4
5#ifndef _HW_INTRINSIC_H_
6#define _HW_INTRINSIC_H_
7
8#if defined(_TARGET_XARCH_)
9#include "hwintrinsicxarch.h"
10#elif defined(_TARGET_ARM64_)
11#include "hwintrinsicArm64.h"
12#endif
13
14#endif // _HW_INTRINSIC_H_
15