diff graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java @ 2585:3e0e65161345

new node layout: Op2
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 14:12:19 +0200
parents 06b2eac2f5d3
children 01c5c0443158
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Thu May 05 14:02:34 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Thu May 05 14:12:19 2011 +0200
@@ -43,10 +43,10 @@
  */
 public abstract class Instruction extends Value {
 
-    public static final int INPUT_COUNT = 0;
+    private static final int INPUT_COUNT = 0;
 
-    public static final int SUCCESSOR_COUNT = 1;
-    public static final int SUCCESSOR_NEXT = 0;
+    private static final int SUCCESSOR_COUNT = 1;
+    private static final int SUCCESSOR_NEXT = 0;
 
     @Override
     protected int inputCount() {
@@ -84,7 +84,6 @@
      */
     private List<ExceptionHandler> exceptionHandlers = ExceptionHandler.ZERO_HANDLERS;
 
-
     private boolean isAppended = false;
 
     /**