summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/node.h')
-rw-r--r--deps/v8/src/compiler/node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/compiler/node.h b/deps/v8/src/compiler/node.h
index 6557635a2e..e6c9f23fdc 100644
--- a/deps/v8/src/compiler/node.h
+++ b/deps/v8/src/compiler/node.h
@@ -7,7 +7,7 @@
#include "src/compiler/opcodes.h"
#include "src/compiler/operator.h"
-#include "src/types-inl.h"
+#include "src/types.h"
#include "src/zone-containers.h"
namespace v8 {
@@ -210,7 +210,6 @@ class Node final {
uint32_t bit_field_;
int input_index() const { return InputIndexField::decode(bit_field_); }
- int output_index() const { return OutputIndexField::decode(bit_field_); }
bool is_inline_use() const { return InlineField::decode(bit_field_); }
Node** input_ptr() {
int index = input_index();
@@ -229,7 +228,8 @@ class Node final {
typedef BitField<bool, 0, 1> InlineField;
typedef BitField<unsigned, 1, 17> InputIndexField;
- typedef BitField<unsigned, 17, 14> OutputIndexField;
+ // Leaving some space in the bitset in case we ever decide to record
+ // the output index.
};
//============================================================================