15 lines
439 B
C++
15 lines
439 B
C++
|
//===-- lib/MC/MCDisassembler.cpp - Disassembler interface ------*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/MC/MCDisassembler.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
MCDisassembler::~MCDisassembler() {
|
||
|
}
|