summaryrefslogtreecommitdiff
path: root/src/jit/gtstructs.h
diff options
context:
space:
mode:
authorFei Peng <fei.peng@intel.com>2017-10-10 10:19:17 -0700
committerFei Peng <fei.peng@intel.com>2017-10-25 17:46:18 -0700
commit8a7e5c21540fef4e6cafec279711a1b9b94961b3 (patch)
tree6aacf52b996b992db821c1ce21655dfaee26400a /src/jit/gtstructs.h
parent5b99e1ac5765eb676f789514686059b1a66b233d (diff)
downloadcoreclr-8a7e5c21540fef4e6cafec279711a1b9b94961b3.tar.gz
coreclr-8a7e5c21540fef4e6cafec279711a1b9b94961b3.tar.bz2
coreclr-8a7e5c21540fef4e6cafec279711a1b9b94961b3.zip
Enable Crc32 , Popcnt, Lzcnt intrinsics
Diffstat (limited to 'src/jit/gtstructs.h')
-rw-r--r--src/jit/gtstructs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jit/gtstructs.h b/src/jit/gtstructs.h
index ab0ae43027..1277ac5b0d 100644
--- a/src/jit/gtstructs.h
+++ b/src/jit/gtstructs.h
@@ -104,6 +104,9 @@ GTSTRUCT_1(PhysReg , GT_PHYSREG)
#ifdef FEATURE_SIMD
GTSTRUCT_1(SIMD , GT_SIMD)
#endif // FEATURE_SIMD
+#if FEATURE_HW_INTRINSICS
+GTSTRUCT_1(HWIntrinsic , GT_HWIntrinsic)
+#endif // FEATURE_HW_INTRINSICS
GTSTRUCT_1(AllocObj , GT_ALLOCOBJ)
GTSTRUCT_1(RuntimeLookup, GT_RUNTIMELOOKUP)
GTSTRUCT_2(CC , GT_JCC, GT_SETCC)