blob: 35f9c889be314d3f94f91ea5b9186bacacb9d8ff [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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