< prev index next >

src/hotspot/share/ci/ciFlags.hpp

Print this page

        

@@ -58,10 +58,11 @@
   bool is_native               () const { return (_flags & JVM_ACC_NATIVE                    ) != 0; }
   bool is_interface            () const { return (_flags & JVM_ACC_INTERFACE                 ) != 0; }
   bool is_abstract             () const { return (_flags & JVM_ACC_ABSTRACT                  ) != 0; }
   bool is_strict               () const { return (_flags & JVM_ACC_STRICT                    ) != 0; }
   bool is_stable               () const { return (_flags & JVM_ACC_FIELD_STABLE              ) != 0; }
+  bool has_vararg              () const { return (_flags & JVM_ACC_VARARGS                   ) != 0; }
   // In case the current object represents a field, return true if
   // the field is modified outside of instance initializer methods
   // (or class/initializer methods if the field is static) and false
   // otherwise.
   bool has_initialized_final_update() const { return (_flags & JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE) != 0; };
< prev index next >