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 | c1a6f981440da9876e8681ebeba5de973e9a30ff (patch) | |
tree | 53cd584beba5d36b1685548a83e1c100cf6a3abb | |
parent | 77295818f08ef96397e13114c88251e4c9e6f115 (diff) | |
download | llvm-c1a6f981440da9876e8681ebeba5de973e9a30ff.zip llvm-c1a6f981440da9876e8681ebeba5de973e9a30ff.tar.gz llvm-c1a6f981440da9876e8681ebeba5de973e9a30ff.tar.bz2 |
Typo
llvm-svn: 149562
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index efd48e1..da72ba5 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/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; |