1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Fix the comments for the 'fast' parameter in addPassesToEmitFile.

llvm-svn: 40592
This commit is contained in:
Dan Gohman 2007-07-30 15:04:59 +00:00
parent db1974dd16
commit 51e7be7b8f

View File

@ -192,8 +192,9 @@ public:
/// addPassesToEmitFile - Add passes to the specified pass manager to get the
/// specified file emitted. Typically this will involve several steps of code
/// generation. If Fast is set to true, the code generator should emit code
/// as fast as possible, without regard for compile time. This method should
/// return FileModel::Error if emission of this file type is not supported.
/// as fast as possible, though the generated code may be less efficient.
/// This method should return FileModel::Error if emission of this file type
/// is not supported.
///
virtual FileModel::Model addPassesToEmitFile(FunctionPassManager &PM,
std::ostream &Out,
@ -243,8 +244,9 @@ public:
/// addPassesToEmitFile - Add passes to the specified pass manager to get the
/// specified file emitted. Typically this will involve several steps of code
/// generation. If Fast is set to true, the code generator should emit code
/// as fast as possible, without regard for compile time. This method should
/// return FileModel::Error if emission of this file type is not supported.
/// as fast as possible, though the generated code may be less efficient.
/// This method should return FileModel::Error if emission of this file type
/// is not supported.
///
/// The default implementation of this method adds components from the
/// LLVM retargetable code generator, invoking the methods below to get