src/share/vm/code/dependencies.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File JDK-8035946 Cdiff src/share/vm/code/dependencies.cpp

src/share/vm/code/dependencies.cpp

Print this page

        

*** 723,739 **** // e.g. evol_method. return NULL; } // ----------------- DependencySignature -------------------------------------- ! bool DependencySignature::equals(DependencySignature* sig) const { ! if ((type() != sig->type()) || (args_count() != sig->args_count())) { return false; } ! for (int i = 0; i < sig->args_count(); i++) { ! if (arg(i) != sig->arg(i)) { return false; } } return true; } --- 723,739 ---- // e.g. evol_method. return NULL; } // ----------------- DependencySignature -------------------------------------- ! bool DependencySignature::equals(DependencySignature const& s1, DependencySignature const& s2) { ! if ((s1.type() != s2.type()) || (s1.args_count() != s2.args_count())) { return false; } ! for (int i = 0; i < s1.args_count(); i++) { ! if (s1.arg(i) != s2.arg(i)) { return false; } } return true; }
src/share/vm/code/dependencies.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File