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
7namespace v8 {
8namespace internal {
9namespace compiler {
10
11Operator::~Operator() {}
12
13
14SimpleOperator::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
22SimpleOperator::~SimpleOperator() {}
23
24}  // namespace compiler
25}  // namespace internal
26}  // namespace v8
27