typo
authorChris Lattner <sabre@nondot.org>
Mon, 2 Nov 2009 18:28:45 +0000 (18:28 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 2 Nov 2009 18:28:45 +0000 (18:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85812 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/LLParser.cpp

index 07bf261573cca79b604091deae4fd738545516ce..c5abb67633fce1e728a99c00541195855f7e5fdb 100644 (file)
@@ -130,7 +130,7 @@ bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
         Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
     } else if (Refs[i].first.Kind == ValID::t_LocalID) {
       return Error(Refs[i].first.Loc,
-       "cannot take address of numeric label after it the function is defined");
+       "cannot take address of numeric label after the function is defined");
     } else {
       Res = dyn_cast_or_null<BasicBlock>(
                      TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));