28.2.12 __builtin_divf
Description
Computes the quotient num
/ den
. A math
error exception occurs if den
is zero. Function arguments are
signed, as is the function result.
Prototype
signed int __builtin_divf(signed int num, signed int den);
Argument
num
– numerator
den
– denominator
Return Value
Returns the signed integer value of the quotient num
/
den
.
Assembler Operator/ Machine Instruction
div.f