Fix reading Time zone rules using Julian days (#17672)
[platform/upstream/coreclr.git] / src / jit / targetx86.cpp
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_X86_)
13
14 #include "target.h"
15
16 const char*            Target::g_tgtCPUName  = "x86";
17 const Target::ArgOrder Target::g_tgtArgOrder = ARG_ORDER_L2R;
18
19 #endif // _TARGET_X86_