From d08690f8e9be1bfb125ff25e8113b96e25ff8aa8 Mon Sep 17 00:00:00 2001 From: Hyung-Kyu Choi Date: Tue, 16 May 2017 17:23:05 +0900 Subject: [RyuJIT/ARM32] Enable casting from small int to float This just enable casting from small int to float by removing assertion. Signed-off-by: Hyung-Kyu Choi --- src/jit/lowerarmarch.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/jit/lowerarmarch.cpp b/src/jit/lowerarmarch.cpp index 4c269af87c..a062cc6de4 100644 --- a/src/jit/lowerarmarch.cpp +++ b/src/jit/lowerarmarch.cpp @@ -276,7 +276,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; -- cgit v1.2.3