aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCCodeEmitter.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-27 01:34:22 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-27 01:34:22 +0000
commit04baf9094ada38a518ba7eda87d4c478a874dbb1 (patch)
tree216b6d7c895c34cff61f949e93b7d2f3d1051f22 /lib/MC/MCCodeEmitter.cpp
parent5b78d50cadf5df4948e8e5798a3e08e0ccf4cb06 (diff)
llvm-mc: Tweak MCCodeEmitter skeleton.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCCodeEmitter.cpp')
-rw-r--r--lib/MC/MCCodeEmitter.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/MC/MCCodeEmitter.cpp b/lib/MC/MCCodeEmitter.cpp
new file mode 100644
index 0000000000..c122763b2f
--- /dev/null
+++ b/lib/MC/MCCodeEmitter.cpp
@@ -0,0 +1,18 @@
+//===-- MCCodeEmitter.cpp - Instruction Encoding --------------------------===//
+//
+// 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;
+
+MCCodeEmitter::MCCodeEmitter() {
+}
+
+MCCodeEmitter::~MCCodeEmitter() {
+}