llvm-svn: 149562
This commit is contained in:
Pete Cooper 2012-02-01 23:43:12 +00:00
parent 77295818f0
commit c1a6f98144
1 changed files with 1 additions and 1 deletions

View File

@ -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;