diff options
author | Tanya Lattner <tonic@nondot.org> | 2005-01-29 23:29:55 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2005-01-29 23:29:55 +0000 |
commit | 5c3fa1ec79b3e37e364641a995e08e0ddd933372 (patch) | |
tree | 34c8105edb2013d41ea677f0adbcbdeef0c5ca0f /lib/Support/Compressor.cpp | |
parent | 445cdd3aad9dd5161f693b78480499f6bd8219ec (diff) |
Make this work on systems where size_t == unsigned and where they are not
the same.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Compressor.cpp')
-rw-r--r-- | lib/Support/Compressor.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Support/Compressor.cpp b/lib/Support/Compressor.cpp index 8d13e74669..49088b88eb 100644 --- a/lib/Support/Compressor.cpp +++ b/lib/Support/Compressor.cpp @@ -36,8 +36,8 @@ static int getdata(char*& buffer, size_t &size, return result; } -static int getdata(char*& buffer, unsigned &size, - llvm::Compressor::OutputDataCallback* cb, void* context) { +static int getdata_uns(char*& buffer, unsigned &size, + llvm::Compressor::OutputDataCallback* cb, void* context) { size_t SizeOut; int Res = getdata(buffer, SizeOut, cb, context); size = SizeOut; @@ -290,7 +290,7 @@ size_t Compressor::compress(const char* in, size_t size, } // Get a block of memory - if (0 != getdata(bzdata.next_out, bzdata.avail_out,cb,context)) { + if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) { BZ2_bzCompressEnd(&bzdata); throw std::string("Can't allocate output buffer"); } @@ -302,7 +302,7 @@ size_t Compressor::compress(const char* in, size_t size, // Compress it int bzerr = BZ_FINISH_OK; while (BZ_FINISH_OK == (bzerr = BZ2_bzCompress(&bzdata, BZ_FINISH))) { - if (0 != getdata(bzdata.next_out, bzdata.avail_out,cb,context)) { + if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) { BZ2_bzCompressEnd(&bzdata); throw std::string("Can't allocate output buffer"); } @@ -400,7 +400,7 @@ size_t Compressor::decompress(const char *in, size_t size, } // Get a block of memory - if (0 != getdata(bzdata.next_out, bzdata.avail_out,cb,context)) { + if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) { BZ2_bzDecompressEnd(&bzdata); throw std::string("Can't allocate output buffer"); } @@ -408,7 +408,7 @@ size_t Compressor::decompress(const char *in, size_t size, // Decompress it int bzerr = BZ_OK; while (BZ_OK == (bzerr = BZ2_bzDecompress(&bzdata))) { - if (0 != getdata(bzdata.next_out, bzdata.avail_out,cb,context)) { + if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) { BZ2_bzDecompressEnd(&bzdata); throw std::string("Can't allocate output buffer"); } |