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

Unified Diff: src/objects-inl.h

Issue 726423002: Hydrogen should recognize literal smi arrays as fast literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Test failure revealed forgotten requirement with dependencies. Created 6 years, 1 month 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 | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index d641688f849be77b908d4c472cd3f98fba0b2f3e..de41d689b5db37c29c62f8b628b0692129d497e9 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1652,21 +1652,6 @@ inline bool AllocationSite::CanTrack(InstanceType type) {
}
-inline DependentCode::DependencyGroup AllocationSite::ToDependencyGroup(
- Reason reason) {
- switch (reason) {
- case TENURING:
- return DependentCode::kAllocationSiteTenuringChangedGroup;
- break;
- case TRANSITIONS:
- return DependentCode::kAllocationSiteTransitionChangedGroup;
- break;
- }
- UNREACHABLE();
- return DependentCode::kAllocationSiteTransitionChangedGroup;
-}
-
-
inline void AllocationSite::set_memento_found_count(int count) {
int value = pretenure_data()->value();
// Verify that we can count more mementos than we can possibly find in one
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698