Commit a96ea2fa authored by rossberg@chromium.org's avatar rossberg@chromium.org

Put common case first

This might fix a 2% regression that we might be observing for CL 14128.

R=verwaest@chromium.org
BUG=

Review URL: https://codereview.chromium.org/13811021

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14206 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c7ce87f8
...@@ -2545,8 +2545,8 @@ void Name::set_hash_field(uint32_t value) { ...@@ -2545,8 +2545,8 @@ void Name::set_hash_field(uint32_t value) {
bool Name::Equals(Name* other) { bool Name::Equals(Name* other) {
if (other == this) return true; if (other == this) return true;
if (this->IsSymbol() || other->IsSymbol() || if ((this->IsInternalizedString() && other->IsInternalizedString()) ||
(this->IsInternalizedString() && other->IsInternalizedString())) { this->IsSymbol() || other->IsSymbol()) {
return false; return false;
} }
return String::cast(this)->SlowEquals(String::cast(other)); return String::cast(this)->SlowEquals(String::cast(other));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment