diff options
author | Ian Lance Taylor <ian@airs.com> | 2010-10-12 19:21:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2010-10-12 19:21:41 +0000 |
commit | eb3730490ec71b6e8a9d63a0348b40d484041db5 (patch) | |
tree | 35f77a081e9d01a073baecec2ae2e8677d9f0589 /gold/script-sections.h | |
parent | 3cef71791839860d05c8c4246c4e1ce2520b44ca (diff) | |
download | gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.zip gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.tar.gz gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.tar.bz2 |
* script-sections.h (class Script_sections): Make
Sections_elements typedef public.
* script-sections.cc (class Sort_output_sections): Add elements_
field. Add constructor which sets it; change all callers.
(Sort_output_sections::is_before): New function.
(Sort_output_sections::operator()): Call is_before.
* configure.ac (NATIVE_OR_CROSS_LINKER): New automake
conditional.
* testsuite/script_test_10.sh: New test. Test script section
order.
* testsuite/script_test_10.t: Likewise.
* testsuite/script_test_10.s: Likewise.
* testsuite/Makefile.am: Wrap the cross linker tests and the
common tests into NATIVE_OR_CROSS_LINKER.
(check_SCRIPTS): Add script_test_10.sh.
(check_DATA): Add script_test_10.stdout.
(script_test_10.o, script_test_10): New targets.
(script_test_10.stdout): New target.
* configure, testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/script-sections.h')
-rw-r--r-- | gold/script-sections.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gold/script-sections.h b/gold/script-sections.h index ee1adae..5b78152 100644 --- a/gold/script-sections.h +++ b/gold/script-sections.h @@ -47,13 +47,11 @@ class Orphan_section_placement; class Script_sections { - private: + public: // This is a list, not a vector, because we insert orphan sections // in the middle. typedef std::list<Sections_element*> Sections_elements; - public: - // Logical script section types. We map section types returned by the // parser into these since some section types have the same semantics. enum Section_type |