Eliminate all remaining tabs and trailing spaces.

llvm-svn: 22523
diff --git a/llvm/lib/Support/Compressor.cpp b/llvm/lib/Support/Compressor.cpp
index e0f5f29..1233cf4 100644
--- a/llvm/lib/Support/Compressor.cpp
+++ b/llvm/lib/Support/Compressor.cpp
@@ -408,7 +408,7 @@
 
       // Decompress it
       int bzerr = BZ_OK;
-      while ( BZ_OK == (bzerr = BZ2_bzDecompress(&bzdata)) && 
+      while ( BZ_OK == (bzerr = BZ2_bzDecompress(&bzdata)) &&
               bzdata.avail_in != 0 ) {
         if (0 != getdata_uns(bzdata.next_out, bzdata.avail_out,cb,context)) {
           BZ2_bzDecompressEnd(&bzdata);