This commit is contained in:
Chuck Rasbold 2008-06-03 15:38:31 -07:00
commit 1f0f6c2277
2 changed files with 3 additions and 1 deletions

View File

@ -823,6 +823,8 @@ bool LibraryCallKit::inline_string_compareTo() {
//------------------------------inline_array_equals----------------------------
bool LibraryCallKit::inline_array_equals() {
if (!Matcher::has_match_rule(Op_AryEq)) return false;
_sp += 2;
Node *argument2 = pop();
Node *argument1 = pop();

View File

@ -460,7 +460,7 @@ class CommandLineFlags {
develop(bool, SpecialStringIndexOf, true, \
"special version of string indexOf") \
\
product(bool, SpecialArraysEquals, true, \
product(bool, SpecialArraysEquals, false, \
"special version of Arrays.equals(char[],char[])") \
\
develop(bool, TraceCallFixup, false, \