summaryrefslogtreecommitdiff
path: root/src/jit/lsraxarch.cpp
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2018-01-19 14:15:26 -0800
committerGitHub <noreply@github.com>2018-01-19 14:15:26 -0800
commit35af7047534f420cb098f496837d1d24a9aedb78 (patch)
tree2f555e7beffd305ab276ead8a007e343205b3a23 /src/jit/lsraxarch.cpp
parente83991cf626b81e478cce014d96276ec2993a684 (diff)
parent5fc35376ab9226f635c8f8979279614953bfaf47 (diff)
downloadcoreclr-35af7047534f420cb098f496837d1d24a9aedb78.tar.gz
coreclr-35af7047534f420cb098f496837d1d24a9aedb78.tar.bz2
coreclr-35af7047534f420cb098f496837d1d24a9aedb78.zip
Merge pull request #15930 from mikedn/useless-code
Remove some redundant code from TreeNodeInfoInit
Diffstat (limited to 'src/jit/lsraxarch.cpp')
-rw-r--r--src/jit/lsraxarch.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/jit/lsraxarch.cpp b/src/jit/lsraxarch.cpp
index fbadd566c8..c0a9bc8c54 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: