diff options
author | Nick Clifton <nickc@redhat.com> | 2010-08-25 08:36:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-08-25 08:36:54 +0000 |
commit | ca09d69af126b596bf21c9d3f7639cae5cd32533 (patch) | |
tree | 8f00e4524bcf6ead8f612b858cf2aa9f4241a663 /gold/script-sections.cc | |
parent | 8f7c79edf3b88a0eb9f11782add6ee61947afbb4 (diff) | |
download | gdb-ca09d69af126b596bf21c9d3f7639cae5cd32533.zip gdb-ca09d69af126b596bf21c9d3f7639cae5cd32533.tar.gz gdb-ca09d69af126b596bf21c9d3f7639cae5cd32533.tar.bz2 |
* archive.cc: Formatting fixes: Remove whitespace between
typename and following asterisk. Remove whitespace between
function name and opening parenthesis.
* archive.h: Likewise.
* arm.cc: Likewise.
* attributes.cc: Likewise.
* attributes.h: Likewise.
* common.cc: Likewise.
* copy-relocs.cc: Likewise.
* dirsearch.h: Likewise.
* dynobj.cc: Likewise.
* ehframe.cc: Likewise.
* ehframe.h: Likewise.
* expression.cc: Likewise.
* fileread.cc: Likewise.
* fileread.h: Likewise.
* gc.h: Likewise.
* gold-threads.cc: Likewise.
* gold.cc: Likewise.
* i386.cc: Likewise.
* icf.h: Likewise.
* incremental-dump.cc: Likewise.
* incremental.cc: Likewise.
* layout.cc: Likewise.
* layout.h: Likewise.
* main.cc: Likewise.
* merge.cc: Likewise.
* merge.h: Likewise.
* object.cc: Likewise.
* object.h: Likewise.
* options.cc: Likewise.
* options.h: Likewise.
* output.cc: Likewise.
* output.h: Likewise.
* plugin.cc: Likewise.
* plugin.h: Likewise.
* powerpc.cc: Likewise.
* reloc.cc: Likewise.
* script-c.h: Likewise.
* script-sections.cc: Likewise.
* script.cc: Likewise.
* stringpool.cc: Likewise.
* symtab.cc: Likewise.
* symtab.h: Likewise.
* target.cc: Likewise.
* timer.cc: Likewise.
* timer.h: Likewise.
* version.cc: Likewise.
* x86_64.cc: Likewise.
Diffstat (limited to 'gold/script-sections.cc')
-rw-r--r-- | gold/script-sections.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gold/script-sections.cc b/gold/script-sections.cc index 978f84d..f7ed682 100644 --- a/gold/script-sections.cc +++ b/gold/script-sections.cc @@ -1894,7 +1894,7 @@ Output_section_definition::output_section_name( const char* file_name, const char* section_name, Output_section*** slot, - Script_sections::Section_type *psection_type) + Script_sections::Section_type* psection_type) { // Ask each element whether it matches NAME. for (Output_section_elements::const_iterator p = this->elements_.begin(); @@ -2309,7 +2309,7 @@ Output_section_definition::section_type() const // Return the name of a script section type. const char* -Output_section_definition::script_section_type_name ( +Output_section_definition::script_section_type_name( Script_section_type script_section_type) { switch (script_section_type) @@ -2681,7 +2681,7 @@ void Script_sections::start_output_section( const char* name, size_t namelen, - const Parser_output_section_header *header) + const Parser_output_section_header* header) { Output_section_definition* posd = new Output_section_definition(name, namelen, @@ -2813,7 +2813,7 @@ Script_sections::output_section_name( const char* file_name, const char* section_name, Output_section*** output_section_slot, - Script_sections::Section_type *psection_type) + Script_sections::Section_type* psection_type) { for (Sections_elements::const_iterator p = this->sections_elements_->begin(); p != this->sections_elements_->end(); @@ -2945,7 +2945,7 @@ Script_sections::set_section_addresses(Symbol_table* symtab, Layout* layout) p != this->sections_elements_->end(); ++p) { - Output_section *os = (*p)->get_output_section(); + Output_section* os = (*p)->get_output_section(); if (os != NULL && (os->flags() & elfcpp::SHF_TLS) != 0) { if (first_tls == NULL) |