c.ngt.s

Operands

[$freg / imm], $freg, $freg

Variants

  • FP compare ngt (single) : Sets FP condition flag 0 to true if the two operands are unordered, or the first is less than or equal to the second; the name reads as not greater than, false otherwise. This is the signalling form, which behaves like 'c.ule' here because FP exceptions are not tracked. Use 'bc1t' or 'bc1f' to branch on the result. c.ngt.s $f0,$f1
  • FP compare ngt (single, flagged) : Sets FP condition flag N, named by the first operand, to true if the two operands are unordered, or the first is less than or equal to the second; the name reads as not greater than, false otherwise. This is the signalling form, which behaves like 'c.ule' here because FP exceptions are not tracked. Use 'bc1t' or 'bc1f' to branch on the result. c.ngt.s 1,$f0,$f1

FP compare ngt (single) : Sets FP condition flag 0 to true if the two operands are unordered, or the first is less than or equal to the second; the name reads as not greater than, false otherwise. This is the signalling form, which behaves like 'c.ule' here because FP exceptions are not tracked. Use 'bc1t' or 'bc1f' to branch on the result.

Loading...