From: Daniel Dunbar Date: Tue, 21 Jul 2009 07:08:59 +0000 (+0000) Subject: Remove some unused code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a8f0af5e0ec7dc60eb4a4a2ae41fee91ea3e2f40;p=oota-llvm.git Remove some unused code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76541 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/AsmParser/X86AsmParser.cpp b/lib/Target/X86/AsmParser/X86AsmParser.cpp index 357ea6d3420..7c50f31ab8f 100644 --- a/lib/Target/X86/AsmParser/X86AsmParser.cpp +++ b/lib/Target/X86/AsmParser/X86AsmParser.cpp @@ -51,10 +51,7 @@ X86ATTAsmParser::MatchInstruction(const char *Name, bool X86ATTAsmParser::ParseInstruction(MCAsmParser &AP, const char *Name, MCInst &Inst) { - MCAsmLexer &Lexer = AP.getLexer(); llvm::SmallVector Operands; - (void) Lexer; - (void) Operands; return MatchInstruction(Name, Operands, Inst); }