Contents | Prev | Next | Index

fstore_<n>

Operation

fstore_<n>
Store float into local variable

Forms
fstore_0 = 67 (0x43) fstore_1 = 68 (0x44) fstore_2 = 69 (0x45) fstore_3 = 70 (0x46)

Stack
..., value ...

Description
The <n> must be a valid index into the local variables of the current frame (§3.6). The value on the top of the operand stack must be of type float. It is popped from the operand stack, and the value of the local variable at <n> is set to value.

Notes
Each of the fstore_<n> is the same as fstore with an index of <n>, except that the operand <n> is implicit.


Contents | Prev | Next | Index

Java Virtual Machine Specification (HTML generated by dkramer on February 25, 1997)
Copyright © 1996 Sun Microsystems, Inc. All rights reserved
Please send any comments or corrections to doug.kramer@sun.com