diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-07 21:19:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-07 21:19:40 +0000 |
commit | 894843cb4e47366dee16ae10edb09a337a6db3ae (patch) | |
tree | 876c3ae92be941e898e84742308cff57da8cc794 /llvm/lib/CodeGen/AsmPrinter/ARMException.cpp | |
parent | 5a1c54999d6e008dd4111701c14721b77838c929 (diff) | |
download | bcm5719-llvm-894843cb4e47366dee16ae10edb09a337a6db3ae.tar.gz bcm5719-llvm-894843cb4e47366dee16ae10edb09a337a6db3ae.zip |
Move the llvm mangler to lib/IR.
This makes it available to tools that don't link with target (like llvm-ar).
llvm-svn: 198708
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/ARMException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/ARMException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp index 247867ff6be..4aed1ccfc04 100644 --- a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp @@ -20,6 +20,7 @@ #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/IR/DataLayout.h" +#include "llvm/IR/Mangler.h" #include "llvm/IR/Module.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCContext.h" @@ -30,7 +31,6 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/FormattedStream.h" -#include "llvm/Target/Mangler.h" #include "llvm/Target/TargetFrameLowering.h" #include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetRegisterInfo.h" |