diff options
author | Pete Cooper <peter_cooper@apple.com> | 2012-02-01 23:43:12 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2012-02-01 23:43:12 +0000 |
commit | af393689887c2f353aa45828b455db85e0b27594 (patch) | |
tree | 69fc2ee4caeed54bf048e0ee5810ee594d01d28a | |
parent | 6ac40af2de482e16ae83b1508efdb9c87f137e08 (diff) |
Typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149562 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AsmParser/LLParser.cpp | 2 |
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; |