summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2019-07-04 10:35:31 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2019-07-04 10:35:31 +0000
commit555d743fcfe2ecb91fe237439389a08ef6af6348 (patch)
tree3e57d714b51cb39acbd53f50c19c76c587904152 /llvm/lib/Bitcode/Reader
parent9a8f3ecfdb493dc4d9e63d9a6901ba8d2aec6ce3 (diff)
downloadbcm5719-llvm-555d743fcfe2ecb91fe237439389a08ef6af6348.tar.gz
bcm5719-llvm-555d743fcfe2ecb91fe237439389a08ef6af6348.zip
Fix -Wdocumentation param warning.
Don't put the full stop at the end of a param name - it confuses the doxygen parser llvm-svn: 365128
Diffstat (limited to 'llvm/lib/Bitcode/Reader')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index de332aaa679..d54e40295b8 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -616,13 +616,13 @@ private:
}
/// Return the flattened type (suitable for use in a Value)
- /// specified by the given \param ID.
+ /// specified by the given \param ID .
Type *getTypeByID(unsigned ID) {
return flattenPointerTypes(getFullyStructuredTypeByID(ID));
}
/// Return the fully structured (bitcode-reader internal) type
- /// corresponding to the given \param ID.
+ /// corresponding to the given \param ID .
Type *getFullyStructuredTypeByID(unsigned ID);
Value *getFnValueByID(unsigned ID, Type *Ty, Type **FullTy = nullptr) {
OpenPOWER on IntegriCloud