summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-02 18:28:45 +0000
committerChris Lattner <sabre@nondot.org>2009-11-02 18:28:45 +0000
commitee7644da4cbc18f95495a5217c6a0c61eb13c767 (patch)
tree0e773eef5cd09352630bf0068f5d08609231f0cd /lib/AsmParser/LLParser.cpp
parent0909796868048d3453fc8bdffd5147cc77f2010e (diff)
downloadllvm-ee7644da4cbc18f95495a5217c6a0c61eb13c767.tar.gz
llvm-ee7644da4cbc18f95495a5217c6a0c61eb13c767.tar.bz2
llvm-ee7644da4cbc18f95495a5217c6a0c61eb13c767.tar.xz
typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r--lib/AsmParser/LLParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index 07bf261573..c5abb67633 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -130,7 +130,7 @@ bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
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));