aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCInstPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-14 01:43:38 +0000
committerChris Lattner <sabre@nondot.org>2009-09-14 01:43:38 +0000
commit65b0b297db16252835ab4d78f33578baa3ace28a (patch)
tree3135717ffdfa96e136c0d2fd8d4109a3907a0f5f /lib/MC/MCInstPrinter.cpp
parentf92c95f3070f2f797987d2b753780a3a5e482351 (diff)
downloadexternal_llvm-65b0b297db16252835ab4d78f33578baa3ace28a.zip
external_llvm-65b0b297db16252835ab4d78f33578baa3ace28a.tar.gz
external_llvm-65b0b297db16252835ab4d78f33578baa3ace28a.tar.bz2
add a new MCInstPrinter class, move the (trivial) MCDisassmbler ctor inline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCInstPrinter.cpp')
-rw-r--r--lib/MC/MCInstPrinter.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/MC/MCInstPrinter.cpp b/lib/MC/MCInstPrinter.cpp
new file mode 100644
index 0000000..6c33216
--- /dev/null
+++ b/lib/MC/MCInstPrinter.cpp
@@ -0,0 +1,14 @@
+//===-- MCInstPrinter.cpp - Convert an MCInst to target assembly syntax ---===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/MC/MCInstPrinter.h"
+using namespace llvm;
+
+MCInstPrinter::~MCInstPrinter() {
+} \ No newline at end of file