src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/LSTORE.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    23 
    23 
    24 /**
    24 /**
    25  * LSTORE - Store long into local variable
    25  * LSTORE - Store long into local variable
    26  * <PRE>Stack: ..., value.word1, value.word2 -&gt; ... </PRE>
    26  * <PRE>Stack: ..., value.word1, value.word2 -&gt; ... </PRE>
    27  *
    27  *
    28  * @version $Id: LSTORE.java 1747278 2016-06-07 17:28:43Z britter $
    28  * @version $Id$
    29  */
    29  */
    30 public class LSTORE extends StoreInstruction {
    30 public class LSTORE extends StoreInstruction {
    31 
    31 
    32     /**
    32     /**
    33      * Empty constructor needed for the Class.newInstance() statement in
    33      * Empty constructor needed for Instruction.readInstruction.
    34      * Instruction.readInstruction(). Not to be used otherwise.
    34      * Not to be used otherwise.
    35      */
    35      */
    36     LSTORE() {
    36     LSTORE() {
    37         super(com.sun.org.apache.bcel.internal.Const.LSTORE, com.sun.org.apache.bcel.internal.Const.LSTORE_0);
    37         super(com.sun.org.apache.bcel.internal.Const.LSTORE, com.sun.org.apache.bcel.internal.Const.LSTORE_0);
    38     }
    38     }
    39 
    39