llvm-svn: 64091
This commit is contained in:
Chris Lattner 2009-02-08 20:00:15 +00:00
parent 4a31df9488
commit f6b4b170b6

View File

@ -466,7 +466,7 @@ bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
}
if (isa<FunctionType>(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;