2017-02-09 06:23:19 +08:00
|
|
|
//===- MCCodeEmitter.cpp - Instruction Encoding ---------------------------===//
|
2009-08-27 09:34:22 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-08-27 09:34:22 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2017-02-09 06:23:19 +08:00
|
|
|
MCCodeEmitter::MCCodeEmitter() = default;
|
2009-08-27 09:34:22 +08:00
|
|
|
|
2017-02-09 06:23:19 +08:00
|
|
|
MCCodeEmitter::~MCCodeEmitter() = default;
|