Index: src/compiler/simplified-operator.h |
diff --git a/src/compiler/simplified-operator.h b/src/compiler/simplified-operator.h |
index 36295ea7d1b76a6978ec6bca2abddb0f04f609ae..9cf08c3704695436c46ad807b280a7925539b224 100644 |
--- a/src/compiler/simplified-operator.h |
+++ b/src/compiler/simplified-operator.h |
@@ -23,7 +23,7 @@ struct FieldAccess { |
int offset; // offset of the field, without tag. |
Handle<Name> name; // debugging only. |
Type* type; // type of the field. |
- MachineRepresentation representation; // machine representation of field. |
+ MachineType representation; // machine representation of field. |
int tag() const { return base_is_tagged == kTaggedBase ? kHeapObjectTag : 0; } |
}; |
@@ -37,7 +37,7 @@ struct ElementAccess { |
BaseTaggedness base_is_tagged; // specifies if the base pointer is tagged. |
int header_size; // size of the header, without tag. |
Type* type; // type of the element. |
- MachineRepresentation representation; // machine representation of element. |
+ MachineType representation; // machine representation of element. |
int tag() const { return base_is_tagged == kTaggedBase ? kHeapObjectTag : 0; } |
}; |