forked from Imagelibrary/binutils-gdb
* 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.
This commit is contained in:
@@ -132,7 +132,7 @@ Plugin::load()
|
||||
// Allocate and populate a transfer vector.
|
||||
const int tv_fixed_size = 16;
|
||||
int tv_size = this->args_.size() + tv_fixed_size;
|
||||
ld_plugin_tv *tv = new ld_plugin_tv[tv_size];
|
||||
ld_plugin_tv* tv = new ld_plugin_tv[tv_size];
|
||||
|
||||
// Put LDPT_MESSAGE at the front of the list so the plugin can use it
|
||||
// while processing subsequent entries.
|
||||
@@ -224,7 +224,7 @@ Plugin::load()
|
||||
// Call the plugin claim-file handler.
|
||||
|
||||
inline bool
|
||||
Plugin::claim_file(struct ld_plugin_input_file *plugin_input_file)
|
||||
Plugin::claim_file(struct ld_plugin_input_file* plugin_input_file)
|
||||
{
|
||||
int claimed = 0;
|
||||
|
||||
@@ -397,7 +397,7 @@ Plugin_manager::make_plugin_object(unsigned int handle)
|
||||
|
||||
ld_plugin_status
|
||||
Plugin_manager::get_input_file(unsigned int handle,
|
||||
struct ld_plugin_input_file *file)
|
||||
struct ld_plugin_input_file* file)
|
||||
{
|
||||
Pluginobj* obj = this->object(handle);
|
||||
if (obj == NULL)
|
||||
@@ -428,7 +428,7 @@ Plugin_manager::release_input_file(unsigned int handle)
|
||||
// Add a new library path.
|
||||
|
||||
ld_plugin_status
|
||||
Plugin_manager::set_extra_library_path(const char *path)
|
||||
Plugin_manager::set_extra_library_path(const char* path)
|
||||
{
|
||||
this->extra_search_path_ = std::string(path);
|
||||
return LDPS_OK;
|
||||
@@ -437,7 +437,7 @@ Plugin_manager::set_extra_library_path(const char *path)
|
||||
// Add a new input file.
|
||||
|
||||
ld_plugin_status
|
||||
Plugin_manager::add_input_file(const char *pathname, bool is_lib)
|
||||
Plugin_manager::add_input_file(const char* pathname, bool is_lib)
|
||||
{
|
||||
Input_file_argument file(pathname,
|
||||
(is_lib
|
||||
@@ -505,7 +505,7 @@ Pluginobj::get_symbol_resolution_info(int nsyms, ld_plugin_symbol* syms) const
|
||||
{
|
||||
// We never decided to include this object. We mark all symbols as
|
||||
// preempted.
|
||||
gold_assert (this->symbols_.size() == 0);
|
||||
gold_assert(this->symbols_.size() == 0);
|
||||
for (int i = 0; i < nsyms; i++)
|
||||
syms[i].resolution = LDPR_PREEMPTED_REG;
|
||||
return LDPS_OK;
|
||||
@@ -626,7 +626,7 @@ Sized_pluginobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
|
||||
|
||||
for (int i = 0; i < this->nsyms_; ++i)
|
||||
{
|
||||
const struct ld_plugin_symbol *isym = &this->syms_[i];
|
||||
const struct ld_plugin_symbol* isym = &this->syms_[i];
|
||||
const char* name = isym->name;
|
||||
const char* ver = isym->version;
|
||||
elfcpp::Elf_Half shndx;
|
||||
@@ -1000,7 +1000,7 @@ register_cleanup(ld_plugin_cleanup_handler handler)
|
||||
// Add symbols from a plugin-claimed input file.
|
||||
|
||||
static enum ld_plugin_status
|
||||
add_symbols(void* handle, int nsyms, const ld_plugin_symbol *syms)
|
||||
add_symbols(void* handle, int nsyms, const ld_plugin_symbol* syms)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
Pluginobj* obj = parameters->options().plugins()->make_plugin_object(
|
||||
@@ -1015,7 +1015,7 @@ add_symbols(void* handle, int nsyms, const ld_plugin_symbol *syms)
|
||||
// file descriptor.
|
||||
|
||||
static enum ld_plugin_status
|
||||
get_input_file(const void *handle, struct ld_plugin_input_file *file)
|
||||
get_input_file(const void* handle, struct ld_plugin_input_file* file)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
unsigned int obj_index =
|
||||
@@ -1026,7 +1026,7 @@ get_input_file(const void *handle, struct ld_plugin_input_file *file)
|
||||
// Release the input file.
|
||||
|
||||
static enum ld_plugin_status
|
||||
release_input_file(const void *handle)
|
||||
release_input_file(const void* handle)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
unsigned int obj_index =
|
||||
@@ -1037,7 +1037,7 @@ release_input_file(const void *handle)
|
||||
// Get the symbol resolution info for a plugin-claimed input file.
|
||||
|
||||
static enum ld_plugin_status
|
||||
get_symbols(const void * handle, int nsyms, ld_plugin_symbol* syms)
|
||||
get_symbols(const void* handle, int nsyms, ld_plugin_symbol* syms)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
Pluginobj* obj = parameters->options().plugins()->object(
|
||||
@@ -1050,7 +1050,7 @@ get_symbols(const void * handle, int nsyms, ld_plugin_symbol* syms)
|
||||
// Add a new (real) input file generated by a plugin.
|
||||
|
||||
static enum ld_plugin_status
|
||||
add_input_file(const char *pathname)
|
||||
add_input_file(const char* pathname)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
return parameters->options().plugins()->add_input_file(pathname, false);
|
||||
@@ -1059,7 +1059,7 @@ add_input_file(const char *pathname)
|
||||
// Add a new (real) library required by a plugin.
|
||||
|
||||
static enum ld_plugin_status
|
||||
add_input_library(const char *pathname)
|
||||
add_input_library(const char* pathname)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
return parameters->options().plugins()->add_input_file(pathname, true);
|
||||
@@ -1069,7 +1069,7 @@ add_input_library(const char *pathname)
|
||||
// add_input_library
|
||||
|
||||
static enum ld_plugin_status
|
||||
set_extra_library_path(const char *path)
|
||||
set_extra_library_path(const char* path)
|
||||
{
|
||||
gold_assert(parameters->options().has_plugins());
|
||||
return parameters->options().plugins()->set_extra_library_path(path);
|
||||
@@ -1078,7 +1078,7 @@ set_extra_library_path(const char *path)
|
||||
// Issue a diagnostic message from a plugin.
|
||||
|
||||
static enum ld_plugin_status
|
||||
message(int level, const char * format, ...)
|
||||
message(int level, const char* format, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, format);
|
||||
|
||||
Reference in New Issue
Block a user