Fix comment on the verifier (typo + doxygen) (NFC)

llvm-svn: 289980
This commit is contained in:
Mehdi Amini 2016-12-16 19:24:13 +00:00
parent 2e8331cab6
commit 242b46aa59
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ class TBAAVerifier {
public:
TBAAVerifier(VerifierSupport *Diagnostic = nullptr)
: Diagnostic(Diagnostic) {}
// Visit an instruction and return true if it is valid, return false it an
// invalid TBAA is attached.
/// Visit an instruction and return true if it is valid, return false if an
/// invalid TBAA is attached.
bool visitTBAAMetadata(Instruction &I, MDNode *MD);
};