< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/LDIV.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. --- 1,7 ---- /* ! * Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership.
*** 25,36 **** /** * LDIV - Divide longs * <PRE>Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 -&gt;</PRE> * ..., result.word1, result.word2 * ! * @version $Id$ ! * @LastModified: Jun 2019 */ public class LDIV extends ArithmeticInstruction implements ExceptionThrower { public LDIV() { super(com.sun.org.apache.bcel.internal.Const.LDIV); --- 25,35 ---- /** * LDIV - Divide longs * <PRE>Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 -&gt;</PRE> * ..., result.word1, result.word2 * ! * @LastModified: Jan 2020 */ public class LDIV extends ArithmeticInstruction implements ExceptionThrower { public LDIV() { super(com.sun.org.apache.bcel.internal.Const.LDIV);
< prev index next >