summaryrefslogtreecommitdiff
path: root/src/jit/utils.h
diff options
context:
space:
mode:
authorTanner Gooding <tannergooding@users.noreply.github.com>2016-06-01 18:17:24 -0700
committerJan Vorlicek <janvorli@microsoft.com>2016-06-02 03:17:24 +0200
commit08786f20e89eb5f518d8d25f3e7f886f69d994ea (patch)
tree7a1ff4252b23de1b2a729a933c10fc8c349b9025 /src/jit/utils.h
parent5b97541ab67310b7831c4f5c13be7978c0b024cd (diff)
downloadcoreclr-08786f20e89eb5f518d8d25f3e7f886f69d994ea.tar.gz
coreclr-08786f20e89eb5f518d8d25f3e7f886f69d994ea.tar.bz2
coreclr-08786f20e89eb5f518d8d25f3e7f886f69d994ea.zip
Improvements to System.Math InternalCall code. (#4847)
* Adding some basic System.Math performance tests. * Renaming 'floatnative' to 'floatdouble'. * Removing outdated workarounds in the floatdouble interop code. * Renaming 'finite.cpp' to 'math.cpp' * Updating the double-precision math tests. * Updating PAL_EPSILON to be more precise.
Diffstat (limited to 'src/jit/utils.h')
-rw-r--r--src/jit/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/utils.h b/src/jit/utils.h
index af9f2db009..7d77e76840 100644
--- a/src/jit/utils.h
+++ b/src/jit/utils.h
@@ -575,7 +575,7 @@ public:
static unsigned __int64 convertDoubleToUInt64(double d);
- static double round(double d);
+ static double round(double x);
};