diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 00:00:37 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 00:00:37 +0000 |
commit | 3da94aec4d429b2ba0f65fa040c33650cade196b (patch) | |
tree | f54f7eb8e1f7b75bc469c85c868c76b3860e0297 /tools/gccld/GenerateCode.cpp | |
parent | fd93908ae8b9684fe71c239e3c6cfe13ff6a2663 (diff) |
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld/GenerateCode.cpp')
-rw-r--r-- | tools/gccld/GenerateCode.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index f0466ddd33..020d883a6b 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -1,10 +1,10 @@ //===- GenerateCode.cpp - Functions for generating executable files ------===// -// +// // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. -// +// //===----------------------------------------------------------------------===// // // This file contains functions for generating executable files once linking @@ -154,8 +154,8 @@ static bool isBytecodeLPath(const std::string &LibPath) { // Make sure the -L path has a '/' character // because llvm-g++ passes them without the ending - // '/' char and sys::Path doesn't think it is a - // directory (see: sys::Path::isDirectory) without it + // '/' char and sys::Path doesn't think it is a + // directory (see: sys::Path::isDirectory) without it std::string dir = LibPath; if ( dir[dir.length()-1] != '/' ) dir.append("/"); @@ -406,7 +406,7 @@ int llvm::GenerateNative(const std::string &OutputFilename, // // Note: // When gccld is called from the llvm-gxx frontends, the -L paths for - // the LLVM cfrontend install paths are appended. We don't want the + // the LLVM cfrontend install paths are appended. We don't want the // native linker to use these -L paths as they contain bytecode files. // Further, we don't want any -L paths that contain bytecode shared // libraries or true bytecode archive files. We omit them in all such @@ -417,7 +417,7 @@ int llvm::GenerateNative(const std::string &OutputFilename, args.push_back(LibPaths[index].c_str()); } } - + // Add in the libraries to link. for (unsigned index = 0; index < Libraries.size(); index++) { if (Libraries[index] != "crtend") { |