Lines Matching full:fcmp
2733 ``fcmp COND (VAL1, VAL2)``
2734 Performs the :ref:`fcmp operation <i_fcmp>` on constants.
6854 '``fcmp``' Instruction
6862 <result> = fcmp <cond> <ty> <op1>, <op2> ; yields i1 or <N x i1>:result
6867 The '``fcmp``' instruction returns a boolean value or vector of boolean
6880 The '``fcmp``' instruction takes three operands. The first operand is
6911 The '``fcmp``' instruction compares ``op1`` and ``op2`` according to the
6950 <result> = fcmp oeq float 4.0, 5.0 ; yields: result=false
6951 <result> = fcmp one float 4.0, 5.0 ; yields: result=true
6952 <result> = fcmp olt float 4.0, 5.0 ; yields: result=true
6953 <result> = fcmp ueq double 1.0, 2.0 ; yields: result=false
6956 ``fcmp`` instruction.