diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-04 16:33:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-04 16:33:25 +0000 |
commit | b4abe320bf9c58d4197ece1ba86ebc3a9d74ad06 (patch) | |
tree | 5d5ccb35bdb078784ee0369b42e88ee37f8e568e /llvm/lib/Support/Compressor.cpp | |
parent | 161a459d42d8536326667a4cd1d33e2deb883904 (diff) | |
download | bcm5719-llvm-b4abe320bf9c58d4197ece1ba86ebc3a9d74ad06.tar.gz bcm5719-llvm-b4abe320bf9c58d4197ece1ba86ebc3a9d74ad06.zip |
Fix build if not HAVE_BZIP2
llvm-svn: 16650
Diffstat (limited to 'llvm/lib/Support/Compressor.cpp')
-rw-r--r-- | llvm/lib/Support/Compressor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Compressor.cpp b/llvm/lib/Support/Compressor.cpp index 972a85d11be..d9398859456 100644 --- a/llvm/lib/Support/Compressor.cpp +++ b/llvm/lib/Support/Compressor.cpp @@ -455,8 +455,8 @@ uint64_t Compressor::decompress(char *in, unsigned size, bzdata.total_out_lo32; BZ2_bzDecompressEnd(&bzdata); break; - } #endif + } case COMP_TYPE_ZLIB: { #if !defined(HAVE_ZLIB) |