summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-09-30 17:40:12 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-09-30 17:40:12 +0000
commitb6b28431d1ac47d7a2d5f7a0c1772385105531c1 (patch)
tree60c7abb145f75a8c72c69e3968f9932978d39a60 /tools
parent238cf3c875dec323f4d028b7cbfb7e8c51909e1a (diff)
downloadllvm-b6b28431d1ac47d7a2d5f7a0c1772385105531c1.tar.gz
llvm-b6b28431d1ac47d7a2d5f7a0c1772385105531c1.tar.bz2
llvm-b6b28431d1ac47d7a2d5f7a0c1772385105531c1.tar.xz
Removed extra space in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/gccld/GenerateCode.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp
index 552bfa9d79..0b8ab9aa36 100644
--- a/tools/gccld/GenerateCode.cpp
+++ b/tools/gccld/GenerateCode.cpp
@@ -118,12 +118,12 @@ GenerateAssembly(const std::string &OutputFilename,
// Run LLC to convert the bytecode file into assembly code.
const char *cmd[8];
- cmd[0] = llc.c_str();
- cmd[1] = "-f";
- cmd[2] = "-o";
- cmd[3] = OutputFilename.c_str();
- cmd[4] = InputFilename.c_str();
- cmd[5] = NULL;
+ cmd[0] = llc.c_str();
+ cmd[1] = "-f";
+ cmd[2] = "-o";
+ cmd[3] = OutputFilename.c_str();
+ cmd[4] = InputFilename.c_str();
+ cmd[5] = NULL;
return ExecWait(cmd, envp);
}
@@ -186,12 +186,12 @@ GenerateNative(const std::string &OutputFilename,
cmd.push_back(OutputFilename.c_str());
cmd.push_back(InputFilename.c_str());
- // Adding the library paths creates a problem for native generation. If we
- // include the search paths from llvmgcc, then we'll be telling normal gcc
- // to look inside of llvmgcc's library directories for libraries. This is
- // bad because those libraries hold only bytecode files (not native object
- // files). In the end, we attempt to link the bytecode libgcc into a native
- // program.
+ // Adding the library paths creates a problem for native generation. If we
+ // include the search paths from llvmgcc, then we'll be telling normal gcc
+ // to look inside of llvmgcc's library directories for libraries. This is
+ // bad because those libraries hold only bytecode files (not native object
+ // files). In the end, we attempt to link the bytecode libgcc into a native
+ // program.
#if 0
// Add in the library path options.
for (unsigned index=0; index < LibPaths.size(); index++) {