R600/SIInstrInfo.cpp: Suppress an warning. [-Wunused-variable]

llvm-svn: 215406
This commit is contained in:
NAKAMURA Takumi 2014-08-11 23:03:38 +00:00
parent 504ec2115d
commit 5f79ee53ec
1 changed files with 1 additions and 0 deletions

View File

@ -1394,6 +1394,7 @@ void SIInstrInfo::legalizeOperands(MachineInstr *MI) const {
MachineOperand *SOffset = getNamedOperand(*MI, AMDGPU::OpName::soffset);
assert(SOffset->isImm() && SOffset->getImm() == 0 && "Legalizing MUBUF "
"with non-zero soffset is not implemented");
(void)SOffset;
// Create the new instruction.
unsigned Addr64Opcode = AMDGPU::getAddr64Inst(MI->getOpcode());