summaryrefslogtreecommitdiff
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2012-02-01 23:43:12 +0000
committerPete Cooper <peter_cooper@apple.com>2012-02-01 23:43:12 +0000
commitaf393689887c2f353aa45828b455db85e0b27594 (patch)
tree69fc2ee4caeed54bf048e0ee5810ee594d01d28a /lib/AsmParser
parent6ac40af2de482e16ae83b1508efdb9c87f137e08 (diff)
downloadllvm-af393689887c2f353aa45828b455db85e0b27594.tar.gz
llvm-af393689887c2f353aa45828b455db85e0b27594.tar.bz2
llvm-af393689887c2f353aa45828b455db85e0b27594.tar.xz
Typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-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 efd48e1c14..da72ba5faf 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -3455,7 +3455,7 @@ bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
return true;
if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
- return Error(Loc, "invalid extractelement operands");
+ return Error(Loc, "invalid shufflevector operands");
Inst = new ShuffleVectorInst(Op0, Op1, Op2);
return false;