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
7#include "jitpch.h"
8#ifdef _MSC_VER
9#pragma hdrstop
10#endif
11
12#if defined(_TARGET_ARM64_)
13
14#include "target.h"
15
16const char* Target::g_tgtCPUName = "arm64";
17const Target::ArgOrder Target::g_tgtArgOrder = ARG_ORDER_R2L;
18
19#endif // _TARGET_ARM64_
20