opdlb.c 242 B

1234567891011121314
  1. #include "em_code.h"
  2. #include "em_private.h"
  3. /* $Id$ */
  4. void CC_opdlb(int opcode, label dlb, arith offset)
  5. {
  6. /* Instruction that as a numeric datalabel + offset as argument
  7. Argument types: g
  8. */
  9. OP(opcode);
  10. DOFF(dlb, offset);
  11. NL();
  12. }