We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d470b commit a711137Copy full SHA for a711137
src/coreclr/jit/lsrariscv64.cpp
@@ -394,21 +394,7 @@ int LinearScan::BuildNode(GenTree* tree)
394
case GT_GT:
395
{
396
var_types op1Type = genActualType(tree->gtGetOp1()->TypeGet());
397
- if (varTypeIsFloating(op1Type))
398
- {
399
- bool isUnordered = (tree->gtFlags & GTF_RELOP_NAN_UN) != 0;
400
- if (isUnordered)
401
402
- if (tree->OperIs(GT_EQ))
403
- buildInternalIntRegisterDefForNode(tree);
404
- }
405
- else
406
407
- if (tree->OperIs(GT_NE))
408
409
410
411
+ if (!varTypeIsFloating(op1Type))
412
413
emitAttr cmpSize = EA_ATTR(genTypeSize(op1Type));
414
if (tree->gtGetOp2()->isContainedIntOrIImmed())
0 commit comments