Test commit: fix typo

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2009-07-27 09:06:52 +00:00
parent e346694a81
commit 30d3b911c9

View File

@ -436,7 +436,7 @@ bool LLParser::ParseStandaloneMetadata() {
SmallVector<Value *, 16> Elts;
if (ParseMDNodeVector(Elts)
|| ParseToken(lltok::rbrace, "exected end of metadata node"))
|| ParseToken(lltok::rbrace, "expected end of metadata node"))
return true;
MDNode *Init = Context.getMDNode(Elts.data(), Elts.size());