summaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-08-05 20:06:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-08-05 20:06:04 +0000
commit181b6c9cb5def44658d15848e34c5c45d973f065 (patch)
tree5831fafbe745d7f588731089d6b26c6468e315b9 /include/llvm/Bitcode
parent0713ca4255ec38b367dc6d2c68446db026b54e52 (diff)
downloadexternal_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.zip
external_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.tar.gz
external_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.tar.bz2
Fix minor doxygen nits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode')
-rw-r--r--include/llvm/Bitcode/Archive.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/llvm/Bitcode/Archive.h b/include/llvm/Bitcode/Archive.h
index 980bd07..39ad5eb 100644
--- a/include/llvm/Bitcode/Archive.h
+++ b/include/llvm/Bitcode/Archive.h
@@ -463,6 +463,8 @@ class Archive {
/// into memory.
Archive(const sys::Path& filename);
+ /// @param data The symbol table data to be parsed
+ /// @param len The length of the symbol table data
/// @param error Set to address of a std::string to get error messages
/// @returns false on error
/// @brief Parse the symbol table at \p data.
@@ -476,17 +478,17 @@ class Archive {
std::string* error ///< Optional error message catcher
);
- /// @param error Set to address of a std::string to get error messages
+ /// @param ErrMessage Set to address of a std::string to get error messages
/// @returns false on error
/// @brief Check that the archive signature is correct
bool checkSignature(std::string* ErrMessage);
- /// @param error Set to address of a std::string to get error messages
+ /// @param ErrMessage Set to address of a std::string to get error messages
/// @returns false on error
/// @brief Load the entire archive.
bool loadArchive(std::string* ErrMessage);
- /// @param error Set to address of a std::string to get error messages
+ /// @param ErrMessage Set to address of a std::string to get error messages
/// @returns false on error
/// @brief Load just the symbol table.
bool loadSymbolTable(std::string* ErrMessage);