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

Unified Diff: src/heap/store-buffer.h

Issue 2652673002: MIPS: Workaround for bug in MIPS Android compiler (Closed)
Patch Set: Change to test so it won't fail on our board any more. Created 3 years, 9 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 | test/cctest/test-cpu-profiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/store-buffer.h
diff --git a/src/heap/store-buffer.h b/src/heap/store-buffer.h
index bf624631865c2564c5edf9ff940dbf61c599b5fc..6c99e1f3dcf48ae7a1f937ab758b06308d3eba16 100644
--- a/src/heap/store-buffer.h
+++ b/src/heap/store-buffer.h
@@ -202,8 +202,8 @@ class StoreBuffer {
// Callbacks are more efficient than reading out the gc state for every
// store buffer operation.
- std::function<void(StoreBuffer*, Address)> insertion_callback;
- std::function<void(StoreBuffer*, Address, Address)> deletion_callback;
+ void (*insertion_callback)(StoreBuffer*, Address);
+ void (*deletion_callback)(StoreBuffer*, Address, Address);
};
} // namespace internal
« no previous file with comments | « no previous file | test/cctest/test-cpu-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698