diff options
author | Cary Coutant <ccoutant@google.com> | 2012-05-23 20:54:37 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2012-05-23 20:54:37 +0000 |
commit | 9b689de01538993d04f35e9d147aacd7ded04ba0 (patch) | |
tree | 0ae78c126a9bd67ea5dc0dd0492601a4e52ac42f /gold/layout.cc | |
parent | 11eb1b4dcc4f45cfdfb3bd8df61e969123293c59 (diff) | |
download | gdb-9b689de01538993d04f35e9d147aacd7ded04ba0.zip gdb-9b689de01538993d04f35e9d147aacd7ded04ba0.tar.gz gdb-9b689de01538993d04f35e9d147aacd7ded04ba0.tar.bz2 |
gold/
* layout.cc (Layout::section_name_mapping): Match .data.rel.ro.*
more carefully.
Diffstat (limited to 'gold/layout.cc')
-rw-r--r-- | gold/layout.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/layout.cc b/gold/layout.cc index 0ac0fbf..e9aeef5 100644 --- a/gold/layout.cc +++ b/gold/layout.cc @@ -4573,8 +4573,8 @@ const Layout::Section_name_mapping Layout::section_name_mapping[] = { MAPPING_INIT(".text.", ".text"), MAPPING_INIT(".rodata.", ".rodata"), - MAPPING_INIT(".data.rel.ro.local", ".data.rel.ro.local"), - MAPPING_INIT(".data.rel.ro", ".data.rel.ro"), + MAPPING_INIT(".data.rel.ro.local.", ".data.rel.ro.local"), + MAPPING_INIT(".data.rel.ro.", ".data.rel.ro"), MAPPING_INIT(".data.", ".data"), MAPPING_INIT(".bss.", ".bss"), MAPPING_INIT(".tdata.", ".tdata"), |