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/LTO/LTOCodeGenerator.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/LTO/LTOCodeGenerator.cpp')
-rw-r--r-- | llvm/lib/LTO/LTOCodeGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/LTO/LTOCodeGenerator.cpp b/llvm/lib/LTO/LTOCodeGenerator.cpp index ff7761c4e33..0a375c89caa 100644 --- a/llvm/lib/LTO/LTOCodeGenerator.cpp +++ b/llvm/lib/LTO/LTOCodeGenerator.cpp @@ -23,6 +23,7 @@ #include "llvm/IR/DataLayout.h" #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/LLVMContext.h" +#include "llvm/IR/Mangler.h" #include "llvm/IR/Module.h" #include "llvm/InitializePasses.h" #include "llvm/LTO/LTOModule.h" @@ -41,7 +42,6 @@ #include "llvm/Support/TargetSelect.h" #include "llvm/Support/ToolOutputFile.h" #include "llvm/Support/system_error.h" -#include "llvm/Target/Mangler.h" #include "llvm/Target/TargetLibraryInfo.h" #include "llvm/Target/TargetLowering.h" #include "llvm/Target/TargetOptions.h" |