2017-02-08 23:23:19 +01:00
|
|
|
//===- MCCodeEmitter.cpp - Instruction Encoding ---------------------------===//
|
2009-08-27 03:34:22 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#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;
|