commit | 516512d66683ef1068369dd8179154f2dfd54bdf | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Feb 08 20:00:15 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Feb 08 20:00:15 2009 +0000 |
tree | 35e8dfb0f026bb4f4224ed1556b94b6987d634f7 | |
parent | becf2ddcce748ca021946a69c5be6357172082cb [diff] [blame] |
fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64091 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ } 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;