1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Make the comment for LinkFiles a bit more precise and easily understood.

llvm-svn: 17899
This commit is contained in:
Reid Spencer 2004-11-16 16:46:22 +00:00
parent 7a2f923599
commit ee379f96f0

View File

@ -36,9 +36,10 @@ bool LinkModules(
std::string* ErrorMsg ///< Optional error message string std::string* ErrorMsg ///< Optional error message string
); );
/// This function links the bytecode \p Files into the \p HeadModule. No /// This function links the bytecode \p Files into the \p HeadModule. Note that
/// matching of symbols is done. It simply calls loads each module and calls /// this does not do any linking of unresolved symbols. The \p Files are all
/// LinkModules for each one. /// completely linked into \p HeadModule regardless of unresolved symbols. This
/// function just loads each bytecode file and calls LinkModules on them.
/// @returns true if an error occurs, false otherwise /// @returns true if an error occurs, false otherwise
bool LinkFiles ( bool LinkFiles (
const char * progname, ///< Name of the program being linked (for output) const char * progname, ///< Name of the program being linked (for output)