[llvm-commits] CVS: llvm/include/llvm/Linker.h
Reid Spencer
reid at x10sys.com
Tue Nov 16 08:46:35 PST 2004
Changes in directory llvm/include/llvm:
Linker.h updated: 1.11 -> 1.12
---
Log message:
Make the comment for LinkFiles a bit more precise and easily understood.
---
Diffs of the changes: (+4 -3)
Index: llvm/include/llvm/Linker.h
diff -u llvm/include/llvm/Linker.h:1.11 llvm/include/llvm/Linker.h:1.12
--- llvm/include/llvm/Linker.h:1.11 Tue Nov 16 00:41:21 2004
+++ llvm/include/llvm/Linker.h Tue Nov 16 10:46:22 2004
@@ -36,9 +36,10 @@
std::string* ErrorMsg ///< Optional error message string
);
-/// This function links the bytecode \p Files into the \p HeadModule. No
-/// matching of symbols is done. It simply calls loads each module and calls
-/// LinkModules for each one.
+/// This function links the bytecode \p Files into the \p HeadModule. Note that
+/// this does not do any linking of unresolved symbols. The \p Files are all
+/// 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
bool LinkFiles (
const char * progname, ///< Name of the program being linked (for output)
More information about the llvm-commits
mailing list