summaryrefslogtreecommitdiff
path: root/linkers
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-11-17 17:42:22 +1100
committerChris Johns <chrisj@rtems.org>2012-11-17 17:42:22 +1100
commit065ac15a4062baca80310476e2c8eea50c0002ce (patch)
tree9cb604d2bb3e8f07f9b1c13878fc88bb7eea5f1c /linkers
parent977c3de534bb5cce7935b47138efc2eac8e5ae23 (diff)
Remove dead code.
Diffstat (limited to 'linkers')
-rw-r--r--linkers/rld-elf.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/linkers/rld-elf.cpp b/linkers/rld-elf.cpp
index 30cd4b6..60a1061 100644
--- a/linkers/rld-elf.cpp
+++ b/linkers/rld-elf.cpp
@@ -705,22 +705,5 @@ namespace rld
"elf:check_file: " + file.name ());
}
-#if 0
- void
- load_symbols (rld::symbols::table& symbols,
- rld::files::object& object,
- bool local,
- bool weak,
- bool global)
- {
- sections sections;
- get_section_headers (object, sections, SHT_SYMTAB);
- for (sections::iterator si = sections.begin ();
- si != sections.end ();
- ++si)
- load_symbol_table (symbols, object, *si, local, weak, global);
- }
-#endif
-
}
}