diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-02 15:16:56 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-02 15:16:56 +0000 |
commit | 0b76b723f425a999688625f3d9271eb26ef9ee2f (patch) | |
tree | 2dd6e59130b11987fb372c5ff12e10783d6daaab /llvm/lib/Bitcode | |
parent | 9342911f31ff177052d201f1b78c83ab0783a4d6 (diff) | |
download | bcm5719-llvm-0b76b723f425a999688625f3d9271eb26ef9ee2f.tar.gz bcm5719-llvm-0b76b723f425a999688625f3d9271eb26ef9ee2f.zip |
Fix doxygen comments from r265224, NFC
llvm-svn: 265225
Diffstat (limited to 'llvm/lib/Bitcode')
-rw-r--r-- | llvm/lib/Bitcode/Writer/ValueEnumerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Writer/ValueEnumerator.h b/llvm/lib/Bitcode/Writer/ValueEnumerator.h index 0592382913a..4c5c03d13e2 100644 --- a/llvm/lib/Bitcode/Writer/ValueEnumerator.h +++ b/llvm/lib/Bitcode/Writer/ValueEnumerator.h @@ -157,12 +157,12 @@ public: /// Check whether the current block has any metadata to emit. bool hasMDs() const { return NumModuleMDs < MDs.size(); } - // Get the MDString metadata for this block. + /// Get the MDString metadata for this block. ArrayRef<const Metadata *> getMDStrings() const { return makeArrayRef(MDs).slice(NumModuleMDs, NumMDStrings); } - // Get the non-MDString metadata for this block. + /// Get the non-MDString metadata for this block. ArrayRef<const Metadata *> getNonMDStrings() const { return makeArrayRef(MDs).slice(NumModuleMDs).slice(NumMDStrings); } |