fdiv :
divide two floats : index : visitInsn()
- Description
- Pops two single-precision floats from the stack, divide by the top
float, and push the single-precision quotient result back onto the stack (i.e.
computes value2 / value1). Division is carried out using IEEE 754
rules.
- Notes
- Divide by zero results in the value NaN to be pushed onto the stack
- See also
- idiv ldiv ddiv
- Stack
Before
|
After |
value1 |
result |
value2 |
... |
... |
... |
- Bytecode
Type
|
Description |
u1
|
fdiv
opcode = 0x6E (110)
|