From: Pete Cooper Date: Wed, 1 Feb 2012 23:43:12 +0000 (+0000) Subject: Typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=af393689887c2f353aa45828b455db85e0b27594;p=oota-llvm.git Typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149562 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index efd48e1c14d..da72ba5faf5 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;