Home | History | Annotate | Download | only in docs

Lines Matching full:sdiv

3651 distinct operations; for signed integer division, use '``sdiv``'.
3666 '``sdiv``' Instruction
3674 <result> = sdiv <ty> <op1>, <op2> ; yields {ty}:result
3675 <result> = sdiv exact <ty> <op1>, <op2> ; yields {ty}:result
3680 The '``sdiv``' instruction returns the quotient of its two operands.
3685 The two arguments to the '``sdiv``' instruction must be
3702 If the ``exact`` keyword is present, the result value of the ``sdiv`` is
3710 <result> = sdiv i32 4, %var ; yields {i32}:result = 4 / %var