PERFORCE change 168772 for review

Stanislav Sedov stas at FreeBSD.org
Tue Sep 22 13:15:52 UTC 2009


http://perforce.freebsd.org/chv.cgi?CH=168772

Change 168772 by stas at stas_yandex on 2009/09/22 13:15:47

	- Do not try to read stabs on amd64, it doesn't work well.
	  The reader is broken on amd64-linux as well.

Affected files ...

.. //depot/projects/valgrind/coregrind/m_debuginfo/readelf.c#10 edit

Differences ...

==== //depot/projects/valgrind/coregrind/m_debuginfo/readelf.c#10 (text+ko) ====

@@ -2007,9 +2007,9 @@
       }
 
       /* Read the stabs and/or dwarf2 debug information, if any.  It
-         appears reading stabs stuff on amd64-linux doesn't work, so
-         we ignore it. */
-#     if !defined(VGP_amd64_linux)
+         appears reading stabs stuff on amd64-linux and amd64-freebsd
+         doesn't work, so we ignore it. */
+#     if !defined(VGP_amd64_linux) && !defined(VGP_amd64_freebsd)
       if (stab_img && stabstr_img) {
          ML_(read_debuginfo_stabs) ( di, stab_img, stab_sz, 
                                          stabstr_img, stabstr_sz );


More information about the p4-projects mailing list