Index: src/interpreter/bytecode-pipeline.cc |
diff --git a/src/interpreter/bytecode-pipeline.cc b/src/interpreter/bytecode-pipeline.cc |
index 6e6a6b6fab6af113e197826b7c33b9aeb56e3192..06accd75dc1c8f843bcb249e64bbd63986cb1eee 100644 |
--- a/src/interpreter/bytecode-pipeline.cc |
+++ b/src/interpreter/bytecode-pipeline.cc |
@@ -11,19 +11,6 @@ namespace v8 { |
namespace internal { |
namespace interpreter { |
-BytecodeNode::BytecodeNode(const BytecodeNode& other) { |
- memcpy(this, &other, sizeof(other)); |
-} |
- |
-BytecodeNode& BytecodeNode::operator=(const BytecodeNode& other) { |
- memcpy(this, &other, sizeof(other)); |
- return *this; |
-} |
- |
-void BytecodeNode::Clone(const BytecodeNode* const other) { |
- memcpy(this, other, sizeof(*other)); |
-} |
- |
void BytecodeNode::Print(std::ostream& os) const { |
#ifdef DEBUG |
std::ios saved_state(nullptr); |