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

Unified Diff: vm/bitmap.cc

Issue 10030001: Resubmit change 6302 after fixing the compiler warning on older GCC compiler versions: (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') | vm/stack_frame.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/bitmap.cc
===================================================================
--- vm/bitmap.cc (revision 6329)
+++ vm/bitmap.cc (working copy)
@@ -63,8 +63,8 @@
void BitmapBuilder::SetBits(const Stackmap& bitmap) {
- intptr_t min = bitmap.Minimum();
- intptr_t max = bitmap.Maximum();
+ intptr_t min = bitmap.MinimumBitOffset();
+ intptr_t max = bitmap.MaximumBitOffset();
if (min == Stackmap::kNoMinimum || max == Stackmap::kNoMaximum) {
return;
}
« no previous file with comments | « no previous file | vm/bitmap_test.cc » ('j') | vm/stack_frame.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698