From 516512d66683ef1068369dd8179154f2dfd54bdf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Feb 2009 20:00:15 +0000 Subject: fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64091 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AsmParser/LLParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/AsmParser') diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 3201e98..4e5f6dd 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; -- cgit v1.1