diff options
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
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) { |