(self, inst1: Instruction, inst2: Instruction)
| 645 | ) |
| 646 | |
| 647 | def _small_consts_match(self, inst1: Instruction, inst2: Instruction) -> bool: |
| 648 | reg1 = self._get_reg(inst1) |
| 649 | reg2 = self._get_reg(inst2) |
| 650 | return reg1 == reg2 |
| 651 | |
| 652 | |
| 653 | class OptimizerX86(Optimizer): # pylint: disable = too-few-public-methods |