From f6b4b170b67c8644d37f11c6538e90e8e832a5c3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Feb 2009 20:00:15 +0000 Subject: [PATCH] fix typo llvm-svn: 64091 --- lib/AsmParser/LLParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 3201e9887ce..4e5f6dde86d 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -466,7 +466,7 @@ bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc, } if (isa(Ty) || Ty == Type::LabelTy || Ty == Type::VoidTy) - return Error(TyLoc, "invald type for global variable"); + return Error(TyLoc, "invalid type for global variable"); GlobalVariable *GV = 0;