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

Unified Diff: runtime/vm/megamorphic_cache_table.cc

Issue 16378004: Revert change 23636 as it is causing issues on dartium. Will resubmit after investigating the darti… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 months 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 | « runtime/vm/debuginfo.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/megamorphic_cache_table.cc
===================================================================
--- runtime/vm/megamorphic_cache_table.cc (revision 23640)
+++ runtime/vm/megamorphic_cache_table.cc (working copy)
@@ -34,9 +34,9 @@
}
if (length_ == capacity_) {
- intptr_t new_capacity = capacity_ + kCapacityIncrement;
- table_ = Utils::Realloc(table_, capacity_, new_capacity);
- capacity_ = new_capacity;
+ capacity_ += kCapacityIncrement;
+ table_ =
+ reinterpret_cast<Entry*>(realloc(table_, capacity_ * sizeof(*table_)));
}
ASSERT(length_ < capacity_);
« no previous file with comments | « runtime/vm/debuginfo.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698