aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/operator.cc
blob: 35f9c889be314d3f94f91ea5b9186bacacb9d8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/compiler/operator.h"

namespace v8 {
namespace internal {
namespace compiler {

Operator::~Operator() {}


SimpleOperator::SimpleOperator(Opcode opcode, Properties properties,
                               int input_count, int output_count,
                               const char* mnemonic)
    : Operator(opcode, properties, mnemonic),
      input_count_(input_count),
      output_count_(output_count) {}


SimpleOperator::~SimpleOperator() {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8