2017-02-08 23:23:19 +01:00
|
|
|
//===- MCCodeEmitter.cpp - Instruction Encoding ---------------------------===//
|
2009-08-27 03:34:22 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01: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 03:34:22 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2017-02-08 23:23:19 +01:00
|
|
|
MCCodeEmitter::MCCodeEmitter() = default;
|
2009-08-27 03:34:22 +02:00
|
|
|
|
2017-02-08 23:23:19 +01:00
|
|
|
MCCodeEmitter::~MCCodeEmitter() = default;
|