Index: src/full-codegen.h |
diff --git a/src/full-codegen.h b/src/full-codegen.h |
index 68263a5dc611dc71d46872275728e5f15f1945d6..3e4e36044c3db2a06c527700977d16b4b9686f60 100644 |
--- a/src/full-codegen.h |
+++ b/src/full-codegen.h |
@@ -437,8 +437,7 @@ class FullCodeGenerator: public AstVisitor { |
// Cache cell support. This associates AST ids with global property cells |
// that will be cleared during GC and collected by the type-feedback oracle. |
- void RecordTypeFeedbackCell(TypeFeedbackId id, |
- Handle<JSGlobalPropertyCell> cell); |
+ void RecordTypeFeedbackCell(TypeFeedbackId id, Handle<Cell> cell); |
// Record a call's return site offset, used to rebuild the frame if the |
// called function was inlined at the site. |
@@ -648,7 +647,7 @@ class FullCodeGenerator: public AstVisitor { |
struct TypeFeedbackCellEntry { |
TypeFeedbackId ast_id; |
- Handle<JSGlobalPropertyCell> cell; |
+ Handle<Cell> cell; |
}; |
@@ -844,7 +843,7 @@ class FullCodeGenerator: public AstVisitor { |
ZoneList<TypeFeedbackCellEntry> type_feedback_cells_; |
int ic_total_count_; |
Handle<FixedArray> handler_table_; |
- Handle<JSGlobalPropertyCell> profiling_counter_; |
+ Handle<Cell> profiling_counter_; |
bool generate_debug_code_; |
Zone* zone_; |