From: Mike Danes Date: Fri, 19 Jan 2018 18:44:39 +0000 (+0200) Subject: Remove some redundant code from TreeNodeInfoInit X-Git-Tag: accepted/tizen/base/20180629.140029~101^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fc35376ab9226f635c8f8979279614953bfaf47;p=platform%2Fupstream%2Fcoreclr.git Remove some redundant code from TreeNodeInfoInit --- diff --git a/src/jit/lsraxarch.cpp b/src/jit/lsraxarch.cpp index 5e8924f..0c2cb5f 100644 --- a/src/jit/lsraxarch.cpp +++ b/src/jit/lsraxarch.cpp @@ -322,16 +322,6 @@ void LinearScan::TreeNodeInfoInit(GenTree* tree, TreeNodeInfo* info) #endif case GT_ADD: case GT_SUB: - // SSE2 arithmetic instructions doesn't support the form "op mem, xmm". - // Rather they only support "op xmm, mem/xmm" form. - if (varTypeIsFloating(tree->TypeGet())) - { - info->srcCount = appendBinaryLocationInfoToList(tree->AsOp()); - break; - } - - __fallthrough; - case GT_AND: case GT_OR: case GT_XOR: