Remove malformed brief commands in comments (NFC) (#70746)

Co-authored-by: Timm Baeder <tbaeder@redhat.com>
This commit is contained in:
Mike Rice 2023-10-31 03:49:53 -07:00 committed by GitHub
parent 3b786f2c76
commit 4f5d463505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1291,20 +1291,20 @@ public:
fillValidCPUList(Values);
}
/// brief Determine whether this TargetInfo supports the given CPU name.
/// Determine whether this TargetInfo supports the given CPU name.
virtual bool isValidCPUName(StringRef Name) const {
return true;
}
/// brief Determine whether this TargetInfo supports the given CPU name for
// tuning.
/// Determine whether this TargetInfo supports the given CPU name for
/// tuning.
virtual bool isValidTuneCPUName(StringRef Name) const {
return isValidCPUName(Name);
}
virtual ParsedTargetAttr parseTargetAttr(StringRef Str) const;
/// brief Determine whether this TargetInfo supports tune in target attribute.
/// Determine whether this TargetInfo supports tune in target attribute.
virtual bool supportsTargetAttributeTune() const {
return false;
}

View File

@ -663,9 +663,9 @@ private:
return PrevTokLocation;
}
///\ brief When we are consuming a code-completion token without having
/// matched specific position in the grammar, provide code-completion results
/// based on context.
/// When we are consuming a code-completion token without having matched
/// specific position in the grammar, provide code-completion results based
/// on context.
///
/// \returns the source location of the code-completion token.
SourceLocation handleUnexpectedCodeCompletionToken();