forked from OSchip/llvm-project
[x86] Switch to using the variable we extracted this operand into.
Spotted this missed refactoring by inspection when reading code, and it doesn't changethe functionality at all. llvm-svn: 214627
This commit is contained in:
parent
5219d4eff6
commit
d10b29240c
|
@ -999,7 +999,7 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
|||
ArrayRef<MachineConstantPoolEntry> Constants =
|
||||
MI->getParent()->getParent()->getConstantPool()->getConstants();
|
||||
const MachineConstantPoolEntry &MaskConstantEntry =
|
||||
Constants[MI->getOperand(5).getIndex()];
|
||||
Constants[MaskOp.getIndex()];
|
||||
Type *MaskTy = MaskConstantEntry.getType();
|
||||
(void)MaskTy;
|
||||
if (!MaskConstantEntry.isMachineConstantPoolEntry())
|
||||
|
|
Loading…
Reference in New Issue