aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/ELFWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-16 21:57:06 +0000
committerChris Lattner <sabre@nondot.org>2010-01-16 21:57:06 +0000
commitf62e3ee8c59c550d1c25fc45b2269ca1b2413ab1 (patch)
treea374b840446fcc6cd5e6fb557dd14c2bae183447 /llvm/lib/CodeGen/ELFWriter.cpp
parentf523bb584c3d479e17a1a95ec0f775f62f93a968 (diff)
downloadllvm-f62e3ee8c59c550d1c25fc45b2269ca1b2413ab1.zip
llvm-f62e3ee8c59c550d1c25fc45b2269ca1b2413ab1.tar.gz
llvm-f62e3ee8c59c550d1c25fc45b2269ca1b2413ab1.tar.bz2
move the mangler into libtarget from vmcore.
llvm-svn: 93664
Diffstat (limited to 'llvm/lib/CodeGen/ELFWriter.cpp')
-rw-r--r--llvm/lib/CodeGen/ELFWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp
index b9d24dc..7af0aef 100644
--- a/llvm/lib/CodeGen/ELFWriter.cpp
+++ b/llvm/lib/CodeGen/ELFWriter.cpp
@@ -45,6 +45,7 @@
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCSectionELF.h"
#include "llvm/MC/MCAsmInfo.h"
+#include "llvm/Target/Mangler.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetELFWriterInfo.h"
#include "llvm/Target/TargetLowering.h"
@@ -52,7 +53,6 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
-#include "llvm/Support/Mangler.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/ADT/SmallString.h"
using namespace llvm;