mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 23:51:56 +00:00
Remove malformed brief commands in comments (NFC) (#70746)
Co-authored-by: Timm Baeder <tbaeder@redhat.com>
This commit is contained in:
parent
3b786f2c76
commit
4f5d463505
@ -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;
|
||||
}
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user