summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccld/GenerateCode.cpp
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
commitaf3b3bdf6d236f81fd4b2b14840dac45b7367110 (patch)
tree947df38effdb2917b1c5b83ed6210860a399bb48 /llvm/tools/gccld/GenerateCode.cpp
parentf5f4cbb055540a2fdcec41564eebf9187dec12dc (diff)
downloadbcm5719-llvm-af3b3bdf6d236f81fd4b2b14840dac45b7367110.tar.gz
bcm5719-llvm-af3b3bdf6d236f81fd4b2b14840dac45b7367110.zip
Removed extra space in comments.
llvm-svn: 8770
Diffstat (limited to 'llvm/tools/gccld/GenerateCode.cpp')
-rw-r--r--llvm/tools/gccld/GenerateCode.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/tools/gccld/GenerateCode.cpp b/llvm/tools/gccld/GenerateCode.cpp
index 552bfa9d796..0b8ab9aa363 100644
--- a/llvm/tools/gccld/GenerateCode.cpp
+++ b/llvm/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++) {
OpenPOWER on IntegriCloud