[llvm-commits] [llvm] r85812 - /llvm/trunk/lib/AsmParser/LLParser.cpp

Chris Lattner sabre at nondot.org
Mon Nov 2 10:28:46 PST 2009


Author: lattner
Date: Mon Nov  2 12:28:45 2009
New Revision: 85812

URL: http://llvm.org/viewvc/llvm-project?rev=85812&view=rev
Log:
typo

Modified:
    llvm/trunk/lib/AsmParser/LLParser.cpp

Modified: llvm/trunk/lib/AsmParser/LLParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/AsmParser/LLParser.cpp?rev=85812&r1=85811&r2=85812&view=diff

==============================================================================
--- llvm/trunk/lib/AsmParser/LLParser.cpp (original)
+++ llvm/trunk/lib/AsmParser/LLParser.cpp Mon Nov  2 12:28:45 2009
@@ -130,7 +130,7 @@
         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));





More information about the llvm-commits mailing list