diff graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiType.java @ 5503:438ab53efdd0

Renaming CiKind => RiKind.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 17:08:33 +0200
parents a53162ca8219
children 452f91ebdb54
line wrap: on
line diff
--- a/graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiType.java	Thu Jun 07 17:07:42 2012 +0200
+++ b/graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiType.java	Thu Jun 07 17:08:33 2012 +0200
@@ -83,14 +83,14 @@
      *        When false, the kind according to the Java specification is returned.
      * @return the kind
      */
-    CiKind kind(boolean architecture);
+    RiKind kind(boolean architecture);
 
     /**
      * Gets the kind used to represent the specified part of this type.
      * @param r the part of the this type
      * @return the kind of constants for the specified part of the type
      */
-    CiKind getRepresentationKind(Representation r);
+    RiKind getRepresentationKind(Representation r);
 
     RiResolvedType resolve(RiResolvedType accessingClass);
 }