Index: src/compiler/simplified-lowering.cc |
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc |
index 0ffbdcc192bdc021bc59942687c3c5c59d81a3c0..12f953fcef102bad5347699543302851246cd289 100644 |
--- a/src/compiler/simplified-lowering.cc |
+++ b/src/compiler/simplified-lowering.cc |
@@ -54,10 +54,10 @@ class RepresentationSelector { |
public: |
// Information for each node tracked during the fixpoint. |
struct NodeInfo { |
- MachineTypeUnion use : 14; // Union of all usages for the node. |
+ MachineTypeUnion use : 15; // Union of all usages for the node. |
bool queued : 1; // Bookkeeping for the traversal. |
bool visited : 1; // Bookkeeping for the traversal. |
- MachineTypeUnion output : 14; // Output type of the node. |
+ MachineTypeUnion output : 15; // Output type of the node. |
}; |
RepresentationSelector(JSGraph* jsgraph, Zone* zone, |