Module Name: src
Committed By: matt
Date: Sat Sep 12 00:50:22 UTC 2009
Modified Files:
src/gnu/dist/binutils/bfd [matt-nb5-mips64]: elf.c
Log Message:
Recognize $L as a local symbol.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.6.32.1 src/gnu/dist/binutils/bfd/elf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/gnu/dist/binutils/bfd/elf.c
diff -u src/gnu/dist/binutils/bfd/elf.c:1.6 src/gnu/dist/binutils/bfd/elf.c:1.6.32.1
--- src/gnu/dist/binutils/bfd/elf.c:1.6 Thu Feb 2 22:03:53 2006
+++ src/gnu/dist/binutils/bfd/elf.c Sat Sep 12 00:50:21 2009
@@ -6312,6 +6312,10 @@
if (name[0] == '.' && name[1] == 'L')
return TRUE;
+ /* Normal local symbols start with ``$L''. */
+ if (name[0] == '$' && name[1] == 'L')
+ return TRUE;
+
/* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
DWARF debugging symbols starting with ``..''. */
if (name[0] == '.' && name[1] == '.')