src/share/vm/ci/ciSymbol.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/ci/ciSymbol.hpp

src/share/vm/ci/ciSymbol.hpp

Print this page

        

*** 107,117 **** } virtual bool is_symbol() const { return true; } // Are two ciSymbols equal? ! bool equals(ciSymbol* obj) { return this->_symbol == obj->get_symbol(); } bool is_signature_polymorphic_name() const; }; #endif // SHARE_VM_CI_CISYMBOL_HPP --- 107,117 ---- } virtual bool is_symbol() const { return true; } // Are two ciSymbols equal? ! bool equals(ciSymbol* obj) { return this->_symbol->equals(obj->get_symbol()); } bool is_signature_polymorphic_name() const; }; #endif // SHARE_VM_CI_CISYMBOL_HPP
src/share/vm/ci/ciSymbol.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File