[Hexagon] Removing variable unused in release.

llvm-svn: 236351
This commit is contained in:
Colin LeMahieu 2015-05-01 21:30:22 +00:00
parent ee977933f7
commit 6efd273a61
1 changed files with 1 additions and 2 deletions

View File

@ -203,7 +203,6 @@ unsigned HexagonMCCodeEmitter::getExprOpValue(const MCInst &MI,
Hexagon::Fixups(Hexagon::fixup_Hexagon_TPREL_LO16); Hexagon::Fixups(Hexagon::fixup_Hexagon_TPREL_LO16);
const MCSymbolRefExpr *MCSRE = static_cast<const MCSymbolRefExpr *>(ME); const MCSymbolRefExpr *MCSRE = static_cast<const MCSymbolRefExpr *>(ME);
const MCInstrDesc &MCID = HexagonMCInstrInfo::getDesc(MCII, MI); const MCInstrDesc &MCID = HexagonMCInstrInfo::getDesc(MCII, MI);
unsigned opcode = MCID.getOpcode();
unsigned bits = HexagonMCInstrInfo::getExtentBits(MCII, MI) - unsigned bits = HexagonMCInstrInfo::getExtentBits(MCII, MI) -
HexagonMCInstrInfo::getExtentAlignment(MCII, MI); HexagonMCInstrInfo::getExtentAlignment(MCII, MI);
const MCSymbolRefExpr::VariantKind kind = MCSRE->getKind(); const MCSymbolRefExpr::VariantKind kind = MCSRE->getKind();
@ -211,7 +210,7 @@ unsigned HexagonMCCodeEmitter::getExprOpValue(const MCInst &MI,
DEBUG(dbgs() << "----------------------------------------\n"); DEBUG(dbgs() << "----------------------------------------\n");
DEBUG(dbgs() << "Opcode Name: " << HexagonMCInstrInfo::getName(MCII, MI) DEBUG(dbgs() << "Opcode Name: " << HexagonMCInstrInfo::getName(MCII, MI)
<< "\n"); << "\n");
DEBUG(dbgs() << "Opcode: " << opcode << "\n"); DEBUG(dbgs() << "Opcode: " << MCID.getOpcode() << "\n");
DEBUG(dbgs() << "Relocation bits: " << bits << "\n"); DEBUG(dbgs() << "Relocation bits: " << bits << "\n");
DEBUG(dbgs() << "Addend: " << *Addend << "\n"); DEBUG(dbgs() << "Addend: " << *Addend << "\n");
DEBUG(dbgs() << "----------------------------------------\n"); DEBUG(dbgs() << "----------------------------------------\n");