From a7a5cc889c9c5bc4f70ef40d87fce365c042a3a2 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 30 Nov 2004 07:13:34 +0000 Subject: [PATCH] Up the compression threshold to 64K so we avoid it for all but the largest bytecode files. This should help linking substantially. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18378 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Compressor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Compressor.cpp b/lib/Support/Compressor.cpp index cf4c9cd54ff..ac6a78a10f0 100644 --- a/lib/Support/Compressor.cpp +++ b/lib/Support/Compressor.cpp @@ -249,7 +249,7 @@ uint64_t Compressor::compress(const char* in, unsigned size, // For small files, we just don't bother compressing. bzip2 isn't very good // with tiny files and can actually make the file larger, so we just avoid // it altogether. - if (size > 256) { + if (size > 64*1024) { // Set up the bz_stream bz_stream bzdata; bzdata.bzalloc = 0;