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

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 526ce01d27
commit 1635c344a0

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