Index: src/hydrogen-gvn.h |
diff --git a/src/hydrogen-gvn.h b/src/hydrogen-gvn.h |
index d04a6eb3aa6029b2c32e121be5f413d1f0feeaea..542bc8a52bc7f185353bb5489cbec5ed36ad5c57 100644 |
--- a/src/hydrogen-gvn.h |
+++ b/src/hydrogen-gvn.h |
@@ -70,7 +70,7 @@ class SideEffectsTracker FINAL BASE_EMBEDDED { |
private: |
friend std::ostream& operator<<(std::ostream& os, const TrackedEffects& f); |
- bool ComputeGlobalVar(Unique<Cell> cell, int* index); |
+ bool ComputeGlobalVar(Unique<PropertyCell> cell, int* index); |
bool ComputeInobjectField(HObjectAccess access, int* index); |
static int GlobalVar(int index) { |
@@ -86,7 +86,7 @@ class SideEffectsTracker FINAL BASE_EMBEDDED { |
// Track up to four global vars. |
static const int kNumberOfGlobalVars = 4; |
- Unique<Cell> global_vars_[kNumberOfGlobalVars]; |
+ Unique<PropertyCell> global_vars_[kNumberOfGlobalVars]; |
int num_global_vars_; |
// Track up to n inobject fields. |