aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCObjectWriter.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-19 09:28:59 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-19 09:28:59 +0000
commit53b2338a1d061ad15a858ff0d641431f4d4ac101 (patch)
treeccd340b12bd98488abf7a6887544f15207fc7930 /lib/MC/MCObjectWriter.cpp
parentbdd9281f356d326155dc2ca5585a708e09e90600 (diff)
MC: Split MCObjectWriter out of MCAssembler.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98949 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCObjectWriter.cpp')
-rw-r--r--lib/MC/MCObjectWriter.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/MC/MCObjectWriter.cpp b/lib/MC/MCObjectWriter.cpp
new file mode 100644
index 0000000000..ab85e31abb
--- /dev/null
+++ b/lib/MC/MCObjectWriter.cpp
@@ -0,0 +1,15 @@
+//===- lib/MC/MCObjetWriter.cpp - MCObjetWriter implementation ------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/MC/MCObjectWriter.h"
+
+using namespace llvm;
+
+MCObjectWriter::~MCObjectWriter() {
+}