diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2009-01-05 12:17:43 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2009-01-05 12:17:43 +0000 |
commit | d34c1c51b3c3fbc5a8fb2eb3bf73753857f8dd24 (patch) | |
tree | d540b9b705ca99d889cf9d87c87249ebe4c16d45 /ld/emultempl/pep.em | |
parent | 588be41a616eecb806105850fb533bc56f5b3552 (diff) | |
download | gdb-d34c1c51b3c3fbc5a8fb2eb3bf73753857f8dd24.zip gdb-d34c1c51b3c3fbc5a8fb2eb3bf73753857f8dd24.tar.gz gdb-d34c1c51b3c3fbc5a8fb2eb3bf73753857f8dd24.tar.bz2 |
2009-01-05 Kai Tietz <kai.tietz@onevision.com>
* emultempl/pe.em: Prefix dollar characters to be outputed in
generated C file.
* emultempl/pep.em: Likewise.
Diffstat (limited to 'ld/emultempl/pep.em')
-rw-r--r-- | ld/emultempl/pep.em | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index 721fc23..f921c1e 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -1419,7 +1419,7 @@ gld_${EMULATION_NAME}_finish (void) We use this to put sections in a reasonable place in the file, and to ensure that they are aligned as required. - We handle grouped sections here as well. A section named .foo$nn + We handle grouped sections here as well. A section named .foo\$nn goes into the output section .foo. All grouped sections are sorted by name. @@ -1439,7 +1439,7 @@ gld_${EMULATION_NAME}_place_orphan (asection *s, /* Look through the script to see where to place this section. */ if (!link_info.relocatable - && (dollar = strchr (secname, '$')) != NULL) + && (dollar = strchr (secname, '\$')) != NULL) { size_t len = dollar - secname; char *newname = xmalloc (len + 1); @@ -1548,7 +1548,7 @@ gld_${EMULATION_NAME}_place_orphan (asection *s, { bfd_boolean found_dollar; - /* The section name has a '$'. Sort it with the other '$' + /* The section name has a '\$'. Sort it with the other '\$' sections. */ found_dollar = FALSE; for ( ; *pl != NULL; pl = &(*pl)->header.next) @@ -1562,7 +1562,7 @@ gld_${EMULATION_NAME}_place_orphan (asection *s, ls = &(*pl)->input_section; lname = bfd_get_section_name (ls->section->owner, ls->section); - if (strchr (lname, '$') == NULL) + if (strchr (lname, '\$') == NULL) { if (found_dollar) break; |