1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Fix doxygen comments from r265224, NFC

llvm-svn: 265225
This commit is contained in:
Duncan P. N. Exon Smith 2016-04-02 15:16:56 +00:00
parent bc60a32a93
commit ffdf9f4853

View File

@ -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);
}