summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-05-19 15:23:50 -0700
committerGitHub <noreply@github.com>2017-05-19 15:23:50 -0700
commit39a69f0002bb6758dfc76772872661f4292325f9 (patch)
tree63d7706df5cfe0a3332c8ff138cb64a2294ce529
parent866ce9448b095492bf30ae2381744cef0bdb0adc (diff)
parentd08690f8e9be1bfb125ff25e8113b96e25ff8aa8 (diff)
downloadcoreclr-39a69f0002bb6758dfc76772872661f4292325f9.tar.gz
coreclr-39a69f0002bb6758dfc76772872661f4292325f9.tar.bz2
coreclr-39a69f0002bb6758dfc76772872661f4292325f9.zip
Merge pull request #11643 from hqueue/arm/ryujit/cast_smalltype2float
[RyuJIT/ARM32] Enable casting from small int to float
-rw-r--r--src/jit/lowerarmarch.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/lowerarmarch.cpp b/src/jit/lowerarmarch.cpp
index e189e5ada7..8f4775aece 100644
--- a/src/jit/lowerarmarch.cpp
+++ b/src/jit/lowerarmarch.cpp
@@ -272,7 +272,6 @@ void Lowering::LowerCast(GenTree* tree)
// Case of src is a small type and dst is a floating point type.
if (varTypeIsSmall(srcType) && varTypeIsFloating(dstType))
{
- NYI_ARM("Lowering for cast from small type to float"); // Not tested yet.
// These conversions can never be overflow detecting ones.
noway_assert(!tree->gtOverflow());
tmpType = TYP_INT;