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 | #if defined(_TARGET_XARCH_) |
6 | #include "instrsxarch.h" |
7 | #elif defined(_TARGET_ARM_) |
8 | #include "instrsarm.h" |
9 | #elif defined(_TARGET_ARM64_) |
10 | #include "instrsarm64.h" |
11 | #else |
12 | #error Unsupported or unset target architecture |
13 | #endif // target type |
14 |