< prev index next >

src/share/vm/ci/ciType.cpp

Print this page

        

@@ -59,10 +59,17 @@
     return this->as_klass()->is_subtype_of(type->as_klass());
   return false;
 }
 
 // ------------------------------------------------------------------
+// ciType::is__Value
+//
+bool ciType::is__Value() const {
+  return (this == ciEnv::____Value_klass);
+}
+
+// ------------------------------------------------------------------
 // ciType::name
 //
 // Return the name of this type
 const char* ciType::name() {
   if (is_primitive_type()) {
< prev index next >