diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-07-25 19:30:07 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-07-26 08:31:50 +0200 |
commit | 6a31d05340b22fc413ee83eaacd0a5565bbbe799 (patch) | |
tree | 78f9e1c2f417244842f6422f17e1816e70317100 /deps/v8/src/compiler/node.h | |
parent | 4d94bb2b1f72b6b612983a517a39c5545724a3ad (diff) | |
download | node-new-6a31d05340b22fc413ee83eaacd0a5565bbbe799.tar.gz |
deps: update V8 to 6.8.275.24
PR-URL: https://github.com/nodejs/node/pull/21079
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yang Guo <yangguo@chromium.org>
Diffstat (limited to 'deps/v8/src/compiler/node.h')
-rw-r--r-- | deps/v8/src/compiler/node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/compiler/node.h b/deps/v8/src/compiler/node.h index ded45a24f4..506b38d53f 100644 --- a/deps/v8/src/compiler/node.h +++ b/deps/v8/src/compiler/node.h @@ -264,8 +264,8 @@ class V8_EXPORT_PRIVATE Node final { void set_op(const Operator* op) { op_ = op; } // Only NodeProperties should manipulate the type. - Type* type() const { return type_; } - void set_type(Type* type) { type_ = type; } + Type type() const { return type_; } + void set_type(Type type) { type_ = type; } // Only NodeMarkers should manipulate the marks on nodes. Mark mark() const { return mark_; } @@ -285,7 +285,7 @@ class V8_EXPORT_PRIVATE Node final { static const int kMaxInlineCapacity = InlineCapacityField::kMax - 1; const Operator* op_; - Type* type_; + Type type_; Mark mark_; uint32_t bit_field_; Use* first_use_; |