Fix cut-n-pasto in comments.

llvm-svn: 28928
This commit is contained in:
Devang Patel 2006-06-27 18:07:29 +00:00
parent b4a636f966
commit 136f284987

View File

@ -218,7 +218,7 @@ void GenerateBytecode(Module* M, const std::string& FileName) {
/// specified bytecode file. /// specified bytecode file.
/// ///
/// Inputs: /// 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. /// OutputFilename - The name of the file to generate.
/// llc - The pathname to use for LLC. /// llc - The pathname to use for LLC.
/// envp - The environment to use when running LLC. /// envp - The environment to use when running LLC.
@ -240,8 +240,7 @@ static int GenerateAssembly(const std::string &OutputFilename,
return sys::Program::ExecuteAndWait(llc,&args[0]); return sys::Program::ExecuteAndWait(llc,&args[0]);
} }
/// GenerateAssembly - generates a native assembly language source file from the /// GenerateCFile - generates a C source file from the specified bytecode file.
/// specified bytecode file.
static int GenerateCFile(const std::string &OutputFile, static int GenerateCFile(const std::string &OutputFile,
const std::string &InputFile, const std::string &InputFile,
const sys::Path &llc) { const sys::Path &llc) {
@ -257,11 +256,11 @@ static int GenerateCFile(const std::string &OutputFile,
return sys::Program::ExecuteAndWait(llc, &args[0]); return sys::Program::ExecuteAndWait(llc, &args[0]);
} }
/// GenerateNative - generates a native assembly language source file from the /// GenerateNative - generates a native object file from the
/// specified assembly source file. /// specified bytecode file.
/// ///
/// Inputs: /// 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. /// OutputFilename - The name of the file to generate.
/// Libraries - The list of libraries with which to link. /// Libraries - The list of libraries with which to link.
/// LibPaths - The list of directories in which to find libraries. /// LibPaths - The list of directories in which to find libraries.