diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-16 21:57:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-16 21:57:06 +0000 |
commit | f62e3ee8c59c550d1c25fc45b2269ca1b2413ab1 (patch) | |
tree | a374b840446fcc6cd5e6fb557dd14c2bae183447 /llvm/lib/CodeGen/ELFWriter.cpp | |
parent | f523bb584c3d479e17a1a95ec0f775f62f93a968 (diff) | |
download | llvm-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.cpp | 2 |
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; |