From 0ac5e2205c17a8865d196f1fdc7003f15628760c Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 3 Jun 2010 17:10:17 +0000 Subject: [PATCH] Whitespace cleanup. llvm-svn: 105395 --- llvm/tools/gold/gold-plugin.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp index 7059210a4b69..9dd00eebff57 100644 --- a/llvm/tools/gold/gold-plugin.cpp +++ b/llvm/tools/gold/gold-plugin.cpp @@ -62,9 +62,9 @@ namespace options { static std::string bc_path; static const char *as_path = NULL; // Additional options to pass into the code generator. - // Note: This array will contain all plugin options which are not claimed + // Note: This array will contain all plugin options which are not claimed // as plugin exclusive to pass to the code generator. - // For example, "generate-api-file" and "as"options are for the plugin + // For example, "generate-api-file" and "as"options are for the plugin // use only and will not be passed. static std::vector extra; @@ -82,7 +82,7 @@ namespace options { } else { as_path = strdup(opt + 3); } - } else if(llvm::StringRef(opt).startswith("also-emit-llvm=")) { + } else if (llvm::StringRef(opt).startswith("also-emit-llvm=")) { const char *path = opt + strlen("also-emit-llvm="); if (bc_path != "") { (*message)(LDPL_WARNING, "Path to the output IL file specified twice. " @@ -209,7 +209,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file, // an .a archive. if (lseek(file->fd, file->offset, SEEK_SET) == -1) { (*message)(LDPL_ERROR, - "Failed to seek to archive member of %s at offset %d: %s\n", + "Failed to seek to archive member of %s at offset %d: %s\n", file->name, file->offset, sys::StrError(errno).c_str()); return LDPS_ERR; @@ -217,7 +217,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file, buf = malloc(file->filesize); if (!buf) { (*message)(LDPL_ERROR, - "Failed to allocate buffer for archive member of size: %d\n", + "Failed to allocate buffer for archive member of size: %d\n", file->filesize); return LDPS_ERR; }