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

Unified Diff: vm/bitmap.cc

Issue 10025003: Revert change 6302 until the compiler warning is addressed. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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 | « no previous file | vm/bitmap_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/bitmap.cc
===================================================================
--- vm/bitmap.cc (revision 6302)
+++ vm/bitmap.cc (working copy)
@@ -63,8 +63,8 @@
void BitmapBuilder::SetBits(const Stackmap& bitmap) {
- intptr_t min = bitmap.MinimumBitOffset();
- intptr_t max = bitmap.MaximumBitOffset();
+ intptr_t min = bitmap.Minimum();
+ intptr_t max = bitmap.Maximum();
if (min == Stackmap::kNoMinimum || max == Stackmap::kNoMaximum) {
return;
}
« no previous file with comments | « no previous file | vm/bitmap_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698