Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: src/unique.h

Issue 106733002: Improve check elimination with branch sensitivity on HCompareObjectEqAndBranch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/unique.h
diff --git a/src/unique.h b/src/unique.h
index a93b04699350dddc4aa9de528eba9abfbd199177..a2f29e433535f33bbb9db08dec02de672f783941 100644
--- a/src/unique.h
+++ b/src/unique.h
@@ -278,7 +278,7 @@ class UniqueSet V8_FINAL : public ZoneObject {
return out;
}
- // Makes an exact copy of this set. O(|this| + |that|).
+ // Makes an exact copy of this set. O(|this|).
UniqueSet<T>* Copy(Zone* zone) const {
UniqueSet<T>* copy = new(zone) UniqueSet<T>();
copy->size_ = this->size_;

Powered by Google App Engine
This is Rietveld 408576698