< prev index next >

src/hotspot/share/ci/ciMethod.hpp

Print this page

        

*** 335,344 **** --- 335,345 ---- bool is_synchronized() const { return flags().is_synchronized(); } bool is_native () const { return flags().is_native(); } bool is_interface () const { return flags().is_interface(); } bool is_abstract () const { return flags().is_abstract(); } bool is_strict () const { return flags().is_strict(); } + bool has_vararg () const { return flags().has_vararg(); } // Other flags bool is_empty_method() const; bool is_vanilla_constructor() const; bool is_final_method() const { return is_final() || holder()->is_final(); }
< prev index next >