< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/IntType.java

Print this page

        

@@ -1,8 +1,7 @@
 /*
- * reserved comment block
- * DO NOT REMOVE OR ALTER!
+ * Copyright (c) 2017, 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.

@@ -39,11 +38,11 @@
 import com.sun.org.apache.bcel.internal.generic.INVOKESPECIAL;
 import com.sun.org.apache.bcel.internal.generic.INVOKESTATIC;
 import com.sun.org.apache.bcel.internal.generic.INVOKEVIRTUAL;
 import com.sun.org.apache.bcel.internal.generic.ISTORE;
 import com.sun.org.apache.bcel.internal.generic.Instruction;
-import com.sun.org.apache.bcel.internal.generic.InstructionConstants;
+import com.sun.org.apache.bcel.internal.generic.InstructionConst;
 import com.sun.org.apache.bcel.internal.generic.InstructionList;
 import com.sun.org.apache.bcel.internal.generic.NEW;
 import com.sun.org.apache.xalan.internal.xsltc.compiler.Constants;
 import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
 

@@ -245,31 +244,31 @@
                                            INT_VALUE_SIG);
         il.append(new INVOKEVIRTUAL(index));
     }
 
     public Instruction ADD() {
-        return InstructionConstants.IADD;
+        return InstructionConst.IADD;
     }
 
     public Instruction SUB() {
-        return InstructionConstants.ISUB;
+        return InstructionConst.ISUB;
     }
 
     public Instruction MUL() {
-        return InstructionConstants.IMUL;
+        return InstructionConst.IMUL;
     }
 
     public Instruction DIV() {
-        return InstructionConstants.IDIV;
+        return InstructionConst.IDIV;
     }
 
     public Instruction REM() {
-        return InstructionConstants.IREM;
+        return InstructionConst.IREM;
     }
 
     public Instruction NEG() {
-        return InstructionConstants.INEG;
+        return InstructionConst.INEG;
     }
 
     public Instruction LOAD(int slot) {
         return new ILOAD(slot);
     }
< prev index next >