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
6#ifndef _EMITDEF_H_
7#define _EMITDEF_H_
8/*****************************************************************************/
9
10#if defined(_TARGET_XARCH_)
11#include "emitxarch.h"
12#elif defined(_TARGET_ARM_)
13#include "emitarm.h"
14#elif defined(_TARGET_ARM64_)
15#include "emitarm64.h"
16#else
17#error Unsupported or unset target architecture
18#endif
19
20/*****************************************************************************/
21#endif //_EMITDEF_H_
22/*****************************************************************************/
23