Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
index bebdceec4c9dbb7e4ddac8488dd7d5809862686b..3d36ead01bb60febe42bec287bb3b4dcf165eb53 100644 |
--- a/src/ic.cc |
+++ b/src/ic.cc |
@@ -1583,7 +1583,7 @@ Handle<Code> KeyedIC::ComputeStub(Handle<JSObject> receiver, |
// Don't handle megamorphic property accesses for INTERCEPTORS or CALLBACKS |
// via megamorphic stubs, since they don't have a map in their relocation info |
// and so the stubs can't be harvested for the object needed for a map check. |
- if (target()->type() != NORMAL) { |
+ if (target()->type() != Code::NORMAL) { |
TRACE_GENERIC_IC("KeyedIC", "non-NORMAL target type"); |
return generic_stub; |
} |