summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-04-02 15:16:56 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2016-04-02 15:16:56 +0000
commit0b76b723f425a999688625f3d9271eb26ef9ee2f (patch)
tree2dd6e59130b11987fb372c5ff12e10783d6daaab /llvm/lib/Bitcode
parent9342911f31ff177052d201f1b78c83ab0783a4d6 (diff)
downloadbcm5719-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.h4
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);
}
OpenPOWER on IntegriCloud