summaryrefslogtreecommitdiff
path: root/src/jit/namedintrinsiclist.h
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2017-09-23 14:23:23 -0700
committerJan Kotas <jkotas@microsoft.com>2017-09-23 14:23:23 -0700
commitbfaad966b593788a58cf213dbbea6645d6446920 (patch)
tree331e99b7f0bd594cb86487cda3bff7222323526f /src/jit/namedintrinsiclist.h
parentededd38548f742a4ddb16e6af9fe4f4c82c64bef (diff)
downloadcoreclr-bfaad966b593788a58cf213dbbea6645d6446920.tar.gz
coreclr-bfaad966b593788a58cf213dbbea6645d6446920.tar.bz2
coreclr-bfaad966b593788a58cf213dbbea6645d6446920.zip
Moving parts of `System.Math` and `System.MathF` to be shared with CoreRT. (#14119)
* Moving parts of `System.MathF` to be shared with CoreRT. * Moving parts of `System.Math` to be shared with CoreRT. * Updating the new 'Round' named intrinsic to map to the legacy 'Round' intrinsic. * Adding back the case statement for CORINFO_INTRINSIC_Round, since it is required for Desktop compat.
Diffstat (limited to 'src/jit/namedintrinsiclist.h')
-rw-r--r--src/jit/namedintrinsiclist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jit/namedintrinsiclist.h b/src/jit/namedintrinsiclist.h
index cf81afc119..2cbdb45965 100644
--- a/src/jit/namedintrinsiclist.h
+++ b/src/jit/namedintrinsiclist.h
@@ -10,7 +10,9 @@
enum NamedIntrinsic
{
NI_Illegal = 0,
- NI_Enum_HasFlag = 1
+ NI_Enum_HasFlag = 1,
+ NI_MathF_Round = 2,
+ NI_Math_Round = 3
};
#endif // _NAMEDINTRINSICLIST_H_