aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2009-06-04 21:14:11 +0000
committerDoug Kwan <dougkwan@google.com>2009-06-04 21:14:11 +0000
commit1dcd334d3410582f4b894b167eda0bd2084952d3 (patch)
tree0330ea40150c90023dd119270a57471f2d1a7350 /gold
parent473f94e69cad89615fd0d26e3837eb0a60cd812d (diff)
downloadfsf-binutils-gdb-1dcd334d3410582f4b894b167eda0bd2084952d3.zip
fsf-binutils-gdb-1dcd334d3410582f4b894b167eda0bd2084952d3.tar.gz
fsf-binutils-gdb-1dcd334d3410582f4b894b167eda0bd2084952d3.tar.bz2
2009-06-04 Doug Kwan <dougkwan@google.com>
* layout.cc (Layout::section_name_mapping): Add mapping for special ARM sections.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog5
-rw-r--r--gold/layout.cc4
2 files changed, 9 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 8f42e6a..a6e11d5 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-04 Doug Kwan <dougkwan@google.com>
+
+ * layout.cc (Layout::section_name_mapping): Add mapping for
+ special ARM sections.
+
2009-06-03 Doug Kwan <dougkwan@google.com>
* arm.cc (utils::sign_extend): Reverse test in gold_assert.
diff --git a/gold/layout.cc b/gold/layout.cc
index 7db10c7..9dbcedc 100644
--- a/gold/layout.cc
+++ b/gold/layout.cc
@@ -2887,6 +2887,10 @@ const Layout::Section_name_mapping Layout::section_name_mapping[] =
MAPPING_INIT(".gnu.linkonce.lr.", ".lrodata"),
MAPPING_INIT(".gnu.linkonce.l.", ".ldata"),
MAPPING_INIT(".gnu.linkonce.lb.", ".lbss"),
+ MAPPING_INIT(".ARM.extab.", ".ARM.extab"),
+ MAPPING_INIT(".gnu.linkonce.armextab.", ".ARM.extab"),
+ MAPPING_INIT(".ARM.exidx.", ".ARM.exidx"),
+ MAPPING_INIT(".gnu.linkonce.armexidx.", ".ARM.exidx"),
};
#undef MAPPING_INIT