summaryrefslogtreecommitdiffstats
path: root/llvm/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
commita38a4dfea798312e0ec7a4f803932e2931e68b30 (patch)
tree2bb650a02e6ea0d1c4097e90d69301e560635b49 /llvm/lib/AsmParser/LLParser.cpp
parente364a32a651074562cbb69f9d6e6eaa539af5338 (diff)
downloadbcm5719-llvm-a38a4dfea798312e0ec7a4f803932e2931e68b30.tar.gz
bcm5719-llvm-a38a4dfea798312e0ec7a4f803932e2931e68b30.zip
typo
llvm-svn: 85812
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.cpp')
-rw-r--r--llvm/lib/AsmParser/LLParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp
index 07bf261573c..c5abb67633f 100644
--- a/llvm/lib/AsmParser/LLParser.cpp
+++ b/llvm/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));
OpenPOWER on IntegriCloud