< prev index next >

src/hotspot/share/ci/ciValueKlass.cpp

Print this page

        

@@ -79,15 +79,10 @@
 // Can this value type be returned as multiple values?
 bool ciValueKlass::can_be_returned_as_fields() const {
   GUARDED_VM_ENTRY(return ValueKlass::cast(get_Klass())->can_be_returned_as_fields();)
 }
 
-// Can this value type be returned as multiple values?
-bool ciValueKlass::is_bufferable() const {
-  GUARDED_VM_ENTRY(return ValueKlass::cast(get_Klass())->is_bufferable();)
-}
-
 // When passing a value type's fields as arguments, count the number
 // of argument slots that are needed
 int ciValueKlass::value_arg_slots() {
   int slots = nof_nonstatic_fields();
   for (int j = 0; j < nof_nonstatic_fields(); j++) {
< prev index next >