src/share/vm/code/dependencies.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/code/dependencies.cpp	Fri Feb 28 09:32:59 2014
--- new/src/share/vm/code/dependencies.cpp	Fri Feb 28 09:32:59 2014

*** 723,739 **** --- 723,739 ---- // e.g. evol_method. return NULL; } // ----------------- DependencySignature -------------------------------------- ! bool DependencySignature::equals(DependencySignature* sig) const { ! if ((type() != sig->type()) || (args_count() != sig->args_count())) { ! 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 < sig->args_count(); i++) { ! if (arg(i) != sig->arg(i)) { ! 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