1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "src/compiler/operator.h"
6 
7 namespace v8 {
8 namespace internal {
9 namespace compiler {
10 
~Operator()11 Operator::~Operator() {}
12 
13 
SimpleOperator(Opcode opcode,Properties properties,int input_count,int output_count,const char * mnemonic)14 SimpleOperator::SimpleOperator(Opcode opcode, Properties properties,
15                                int input_count, int output_count,
16                                const char* mnemonic)
17     : Operator(opcode, properties, mnemonic),
18       input_count_(input_count),
19       output_count_(output_count) {}
20 
21 
~SimpleOperator()22 SimpleOperator::~SimpleOperator() {}
23 
24 }  // namespace compiler
25 }  // namespace internal
26 }  // namespace v8
27