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

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: Split variable declarations onto multiple lines. 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
« no previous file with comments | « src/hydrogen-check-elimination.cc ('k') | test/mjsunit/compiler/compare_objeq_elim.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « src/hydrogen-check-elimination.cc ('k') | test/mjsunit/compiler/compare_objeq_elim.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698