Xfail the compressed debug sections
[deliverable/binutils-gdb.git] / gas / write.c
index 6a781eaa9a0c372b10a8f6f87e19c960e05501ef..248255b3b66e36999a11a737faa6803fa8205d8f 100644 (file)
@@ -1519,7 +1519,7 @@ compress_debug (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
 
   /* PR binutils/18087: If compression didn't make the section smaller,
      just keep it uncompressed.  */
-  if (compressed_size > uncompressed_size)
+  if (compressed_size >= uncompressed_size)
     return;
 
   memcpy (header, "ZLIB", 4);
This page took 0.023755 seconds and 4 git commands to generate.