2017-02-08 22:23:19 +00:00
|
|
|
//===- MCCodeEmitter.cpp - Instruction Encoding ---------------------------===//
|
2009-08-27 01:34:22 +00: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 22:23:19 +00:00
|
|
|
MCCodeEmitter::MCCodeEmitter() = default;
|
2009-08-27 01:34:22 +00:00
|
|
|
|
2017-02-08 22:23:19 +00:00
|
|
|
MCCodeEmitter::~MCCodeEmitter() = default;
|