diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-08-10 01:57:52 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-08-10 01:57:52 +0000 |
commit | 94bc246a8b2fd0ef371c8f3846ac9a5a367ed9ab (patch) | |
tree | 9fc1d907a6f064e545653f41895d353456a569ca /tools/llvm-ranlib | |
parent | ec175ff2704e26d4ee9d2853ba284d82923b9d74 (diff) | |
download | external_llvm-94bc246a8b2fd0ef371c8f3846ac9a5a367ed9ab.zip external_llvm-94bc246a8b2fd0ef371c8f3846ac9a5a367ed9ab.tar.gz external_llvm-94bc246a8b2fd0ef371c8f3846ac9a5a367ed9ab.tar.bz2 |
Remove references to compression in llvm-ar. It has been a long time since we
switched from a bytecode+bzip2 to the current bitcode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ranlib')
-rw-r--r-- | tools/llvm-ranlib/llvm-ranlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ranlib/llvm-ranlib.cpp b/tools/llvm-ranlib/llvm-ranlib.cpp index 64f795f..4006765 100644 --- a/tools/llvm-ranlib/llvm-ranlib.cpp +++ b/tools/llvm-ranlib/llvm-ranlib.cpp @@ -81,7 +81,7 @@ int main(int argc, char **argv) { if (!TheArchive) throw err_msg; - if (TheArchive->writeToDisk(true, false, false, &err_msg )) + if (TheArchive->writeToDisk(true, false, &err_msg )) throw err_msg; if (Verbose) |