{@inheritDoc}
(AnnotatedOutput out, DalvInsn insn)
| 100 | |
| 101 | /** {@inheritDoc} */ |
| 102 | @Override |
| 103 | public void writeTo(AnnotatedOutput out, DalvInsn insn) { |
| 104 | RegisterSpecList regs = insn.getRegisters(); |
| 105 | int value = |
| 106 | ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); |
| 107 | |
| 108 | write(out, |
| 109 | opcodeUnit(insn, regs.get(0).getReg()), |
| 110 | codeUnit(regs.get(1).getReg(), value & 0xff)); |
| 111 | } |
| 112 | } |
nothing calls this directly
no test coverage detected