diff options
author | Eric Christopher <echristo@apple.com> | 2009-07-23 01:01:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2009-07-23 01:01:32 +0000 |
commit | fef8db605dad00bd382a49f2cb662ce3361ab86e (patch) | |
tree | 78db091e27b8bc0f5fd71771086fb0022be2581a /llvm/lib/AsmParser/LLParser.cpp | |
parent | 1a722d9b7306b9c14250bb6c86f104dc6bbfdded (diff) | |
download | bcm5719-llvm-fef8db605dad00bd382a49f2cb662ce3361ab86e.tar.gz bcm5719-llvm-fef8db605dad00bd382a49f2cb662ce3361ab86e.zip |
Fix error message for correct opcode.
llvm-svn: 76829
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.cpp')
-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 bb92b16300e..18f83231dad 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -3110,7 +3110,7 @@ bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) { return true; if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) - return Error(Loc, "invalid extractelement operands"); + return Error(Loc, "invalid insertelement operands"); Inst = InsertElementInst::Create(Op0, Op1, Op2); return false; |