[llvm-commits] CVS: llvm/tools/llvm-ld/llvm-ld.cpp

Devang Patel dpatel at apple.com
Tue Jun 27 11:07:41 PDT 2006



Changes in directory llvm/tools/llvm-ld:

llvm-ld.cpp updated: 1.32 -> 1.33
---
Log message:

Fix cut-n-pasto in comments.


---
Diffs of the changes:  (+5 -6)

 llvm-ld.cpp |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)


Index: llvm/tools/llvm-ld/llvm-ld.cpp
diff -u llvm/tools/llvm-ld/llvm-ld.cpp:1.32 llvm/tools/llvm-ld/llvm-ld.cpp:1.33
--- llvm/tools/llvm-ld/llvm-ld.cpp:1.32	Wed Jun  7 18:03:13 2006
+++ llvm/tools/llvm-ld/llvm-ld.cpp	Tue Jun 27 13:07:29 2006
@@ -218,7 +218,7 @@
 /// specified bytecode file.
 ///
 /// Inputs:
-///  InputFilename  - The name of the output bytecode file.
+///  InputFilename  - The name of the input bytecode file.
 ///  OutputFilename - The name of the file to generate.
 ///  llc            - The pathname to use for LLC.
 ///  envp           - The environment to use when running LLC.
@@ -240,8 +240,7 @@
   return sys::Program::ExecuteAndWait(llc,&args[0]);
 }
 
-/// GenerateAssembly - generates a native assembly language source file from the
-/// specified bytecode file.
+/// GenerateCFile - generates a C source file from the specified bytecode file.
 static int GenerateCFile(const std::string &OutputFile,
                          const std::string &InputFile,
                          const sys::Path &llc) {
@@ -257,11 +256,11 @@
   return sys::Program::ExecuteAndWait(llc, &args[0]);
 }
 
-/// GenerateNative - generates a native assembly language source file from the
-/// specified assembly source file.
+/// GenerateNative - generates a native object file from the
+/// specified bytecode file.
 ///
 /// Inputs:
-///  InputFilename  - The name of the output bytecode file.
+///  InputFilename  - The name of the input bytecode file.
 ///  OutputFilename - The name of the file to generate.
 ///  Libraries      - The list of libraries with which to link.
 ///  LibPaths       - The list of directories in which to find libraries.






More information about the llvm-commits mailing list