src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/IDIV.java
changeset 55496 8e0ae3830fca
parent 48409 5ab69533994b
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
     1 /*
     1 /*
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
     3  */
     3  */
     4 /*
     4 /*
     5  * Licensed to the Apache Software Foundation (ASF) under one or more
     5  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * contributor license agreements.  See the NOTICE file distributed with
     6  * contributor license agreements.  See the NOTICE file distributed with
     7  * this work for additional information regarding copyright ownership.
     7  * this work for additional information regarding copyright ownership.
    24 
    24 
    25 /**
    25 /**
    26  * IDIV - Divide ints
    26  * IDIV - Divide ints
    27  * <PRE>Stack: ..., value1, value2 -&gt; result</PRE>
    27  * <PRE>Stack: ..., value1, value2 -&gt; result</PRE>
    28  *
    28  *
    29  * @version $Id: IDIV.java 1747278 2016-06-07 17:28:43Z britter $
    29  * @version $Id$
    30  * @LastModified: Oct 2017
    30  * @LastModified: Jun 2019
    31  */
    31  */
    32 public class IDIV extends ArithmeticInstruction implements ExceptionThrower {
    32 public class IDIV extends ArithmeticInstruction implements ExceptionThrower {
    33 
    33 
    34     /** Divide ints
    34     /** Divide ints
    35      */
    35      */