diff graal/com.oracle.max.cri/src/com/sun/cri/xir/CiXirAssembler.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
line wrap: on
line diff
--- a/graal/com.oracle.max.cri/src/com/sun/cri/xir/CiXirAssembler.java	Sun Dec 18 05:23:52 2011 +0100
+++ b/graal/com.oracle.max.cri/src/com/sun/cri/xir/CiXirAssembler.java	Sun Dec 18 05:24:06 2011 +0100
@@ -39,12 +39,12 @@
     protected XirOperand resultOperand;
     protected boolean allocateResultOperand;
 
-    protected final List<XirInstruction> instructions = new ArrayList<XirInstruction>();
-    protected final List<XirLabel> labels = new ArrayList<XirLabel>(5);
-    protected final List<XirParameter> parameters = new ArrayList<XirParameter>(5);
-    protected final List<XirTemp> temps = new ArrayList<XirTemp>(5);
-    protected final List<XirConstant> constants = new ArrayList<XirConstant>(5);
-    protected final List<XirMark> marks = new ArrayList<XirMark>(5);
+    protected final List<XirInstruction> instructions = new ArrayList<>();
+    protected final List<XirLabel> labels = new ArrayList<>(5);
+    protected final List<XirParameter> parameters = new ArrayList<>(5);
+    protected final List<XirTemp> temps = new ArrayList<>(5);
+    protected final List<XirConstant> constants = new ArrayList<>(5);
+    protected final List<XirMark> marks = new ArrayList<>(5);
 
     protected int outgoingStackSize = 0;