diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 15:47:20 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 15:47:20 +0000 |
commit | ac5c1b0d6826cbff0afce00f7cf3d8657112a6a3 (patch) | |
tree | 9424cdbe9067b4751ba3ecb4b4a7a177ad021831 /llvm/tools/llvm-ar/llvm-ar.cpp | |
parent | c493bd1f593f9c2017097a515f4c46f9a56a90f3 (diff) | |
download | bcm5719-llvm-ac5c1b0d6826cbff0afce00f7cf3d8657112a6a3.tar.gz bcm5719-llvm-ac5c1b0d6826cbff0afce00f7cf3d8657112a6a3.zip |
Move lib/Archive to tools/llvm-ar.
llvm-ar is the only tool that needs to write archive files. Every other tool
should be able to use the lib/Object interface.
llvm-svn: 184083
Diffstat (limited to 'llvm/tools/llvm-ar/llvm-ar.cpp')
-rw-r--r-- | llvm/tools/llvm-ar/llvm-ar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-ar/llvm-ar.cpp b/llvm/tools/llvm-ar/llvm-ar.cpp index 243a845e3c6..2a4a3deecdd 100644 --- a/llvm/tools/llvm-ar/llvm-ar.cpp +++ b/llvm/tools/llvm-ar/llvm-ar.cpp @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// +#include "Archive.h" #include "llvm/IR/LLVMContext.h" -#include "llvm/Bitcode/Archive.h" #include "llvm/IR/Module.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FileSystem.h" |