From 358846b9417e1043818cea18da0f18924ebc2a5d Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Wed, 7 Sep 2016 13:26:05 +0900 Subject: [PATCH] modify comment --- src/jit/gentree.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp index dd244b7..38f7c0f 100644 --- a/src/jit/gentree.cpp +++ b/src/jit/gentree.cpp @@ -12042,8 +12042,9 @@ GenTreePtr Compiler::gtFoldExprConst(GenTreePtr tree) // constants in a target-specific function. CLANG_FORMAT_COMMENT_ANCHOR; - // Don't fold conversions of +inf/-inf to integral value as the value returned by JIT helper - // doesn't match with the C compiler's cast result. + // Don't fold conversions of +inf/-inf to integral value on all platforms + // as the value returned by JIT helper doesn't match with the C compiler's cast result. + // We want the behavior to be same with or without folding. return tree; } -- 2.7.4