summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/node.h
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2018-07-25 19:30:07 +0200
committerMichaël Zasso <targos@protonmail.com>2018-07-26 08:31:50 +0200
commit6a31d05340b22fc413ee83eaacd0a5565bbbe799 (patch)
tree78f9e1c2f417244842f6422f17e1816e70317100 /deps/v8/src/compiler/node.h
parent4d94bb2b1f72b6b612983a517a39c5545724a3ad (diff)
downloadnode-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.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 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_;