Blame SOURCES/binutils-readelf-other-sym-info.patch

391f42
--- binutils.orig/binutils/readelf.c	2020-07-24 15:08:30.317597020 +0100
391f42
+++ binutils-2.35/binutils/readelf.c	2020-07-24 15:09:39.029155552 +0100
391f42
@@ -12069,11 +12069,13 @@ print_dynamic_symbol (Filedata *filedata
391f42
       unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
391f42
 
391f42
       printf (" %-7s", get_symbol_visibility (vis));
391f42
+#if 0
391f42
       /* Check to see if any other bits in the st_other field are set.
391f42
 	 Note - displaying this information disrupts the layout of the
391f42
 	 table being generated, but for the moment this case is very rare.  */
391f42
       if (psym->st_other ^ vis)
391f42
 	printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
391f42
+#endif
391f42
     }
391f42
   printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
391f42
 
391f42
@@ -12112,7 +12114,17 @@ print_dynamic_symbol (Filedata *filedata
391f42
 		version_string);
391f42
     }
391f42
 
391f42
-  putchar ('\n');
391f42
+#if 1
391f42
+    {
391f42
+      unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
391f42
+
391f42
+      /* Check to see if any other bits in the st_other field are set.  */
391f42
+      if (psym->st_other ^ vis)
391f42
+	printf (" \t[%s]", get_symbol_other (filedata, psym->st_other ^ vis));
391f42
+    }
391f42
+#endif
391f42
+
391f42
+    putchar ('\n');
391f42
 
391f42
   if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
391f42
       && section != NULL