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

Unified Diff: runtime/vm/object.cc

Issue 551043002: VM: Remove unused IsClosureCall bit from IC data. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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
Index: runtime/vm/object.cc
===================================================================
--- runtime/vm/object.cc (revision 39965)
+++ runtime/vm/object.cc (working copy)
@@ -11295,17 +11295,6 @@
}
-bool ICData::IsClosureCall() const {
- return IsClosureCallBit::decode(raw_ptr()->state_bits_);
-}
-
-
-void ICData::SetIsClosureCall() const {
- raw_ptr()->state_bits_ =
- IsClosureCallBit::update(true, raw_ptr()->state_bits_);
-}
-
-
void ICData::set_state_bits(uint32_t bits) const {
raw_ptr()->state_bits_ = bits;
}

Powered by Google App Engine
This is Rietveld 408576698