diff graal/com.oracle.max.cri/src/com/oracle/max/cri/xir/XirTemplate.java @ 5774:a1db0ea58b53

Removed left over Ci* prefixed identifiers
author Doug Simon <doug.simon@oracle.com>
date Thu, 05 Jul 2012 21:39:22 +0200
parents 744dade427b8
children
line wrap: on
line diff
--- a/graal/com.oracle.max.cri/src/com/oracle/max/cri/xir/XirTemplate.java	Thu Jul 05 17:53:27 2012 +0200
+++ b/graal/com.oracle.max.cri/src/com/oracle/max/cri/xir/XirTemplate.java	Thu Jul 05 21:39:22 2012 +0200
@@ -25,7 +25,7 @@
 import java.io.*;
 import java.util.*;
 
-import com.oracle.max.cri.xir.CiXirAssembler.*;
+import com.oracle.max.cri.xir.XirAssembler.*;
 
 /**
  * Represents a completed template of XIR code that has been first assembled by
@@ -71,12 +71,12 @@
     /**
      * The sequence of instructions for the fast (inline) path.
      */
-    public final CiXirAssembler.XirInstruction[] fastPath;
+    public final XirAssembler.XirInstruction[] fastPath;
 
     /**
      * The sequence of instructions for the slow (out of line) path.
      */
-    public final CiXirAssembler.XirInstruction[] slowPath;
+    public final XirAssembler.XirInstruction[] slowPath;
 
     /**
      * Labels used in control transfers.
@@ -130,8 +130,8 @@
                        int variableCount,
                        boolean allocateResultOperand,
                        XirOperand resultOperand,
-                       CiXirAssembler.XirInstruction[] fastPath,
-                       CiXirAssembler.XirInstruction[] slowPath,
+                       XirAssembler.XirInstruction[] fastPath,
+                       XirAssembler.XirInstruction[] slowPath,
                        XirLabel[] labels,
                        XirParameter[] parameters,
                        XirTemp[] temps,