Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index bab63648d40a072466ed89ebddfc839085e3f249..59f1c1fa7f720df082e45ea28da91f272456ab33 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -304,22 +304,24 @@ class BytecodeLabel final { |
public: |
BytecodeLabel() : bound_(false), offset_(kInvalidOffset) {} |
- INLINE(bool is_bound() const) { return bound_; } |
+ bool is_bound() const { return bound_; } |
+ size_t offset() const { return offset_; } |
private: |
static const size_t kInvalidOffset = static_cast<size_t>(-1); |
- INLINE(void bind_to(size_t offset)) { |
+ void bind_to(size_t offset) { |
DCHECK(!bound_ && offset != kInvalidOffset); |
offset_ = offset; |
bound_ = true; |
} |
- INLINE(void set_referrer(size_t offset)) { |
+ |
+ void set_referrer(size_t offset) { |
DCHECK(!bound_ && offset != kInvalidOffset && offset_ == kInvalidOffset); |
offset_ = offset; |
} |
- INLINE(size_t offset() const) { return offset_; } |
- INLINE(bool is_forward_target() const) { |
+ |
+ bool is_forward_target() const { |
return offset() != kInvalidOffset && !is_bound(); |
} |