Home | History | Annotate | Download | only in docs

Lines Matching full:fcmp

2003 :ref:`frem <i_frem>`, :ref:`fcmp <i_fcmp>`) have the following flags that can
2952 ``fcmp COND (VAL1, VAL2)``
2953 Performs the :ref:`fcmp operation <i_fcmp>` on constants.
8109 '``fcmp``' Instruction
8117 <result> = fcmp [fast-math flags]* <cond> <ty> <op1>, <op2> ; yields i1 or <N x i1>:result
8122 The '``fcmp``' instruction returns a boolean value or vector of boolean
8135 The '``fcmp``' instruction takes three operands. The first operand is
8166 The '``fcmp``' instruction compares ``op1`` and ``op2`` according to the
8200 The ``fcmp`` instruction can also optionally take any number of
8204 Any set of fast-math flags are legal on an ``fcmp`` instruction, but the
8214 <result> = fcmp oeq float 4.0, 5.0 ; yields: result=false
8215 <result> = fcmp one float 4.0, 5.0 ; yields: result=true
8216 <result> = fcmp olt float 4.0, 5.0 ; yields: result=true
8217 <result> = fcmp ueq double 1.0, 2.0 ; yields: result=false
8220 ``fcmp`` instruction.