Index: src/handles.cc |
diff --git a/src/handles.cc b/src/handles.cc |
index edb657c53dc95bf61544acb3275266480d55976c..ea0f8aebafa612a348037ebcbaeb1b9710f8d0c8 100644 |
--- a/src/handles.cc |
+++ b/src/handles.cc |
@@ -682,10 +682,6 @@ Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object, |
if (field_index >= map->inobject_properties()) { |
field_index = -(field_index - map->inobject_properties() + 1); |
} |
- field_index = field_index << 1; |
- if (details.representation().IsDouble()) { |
- field_index |= 1; |
- } |
indices->set(index, Smi::FromInt(field_index)); |
} |
} |