tes.h 517 B

12345678910111213141516171819202122
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. *
  5. * Author: Hans van Eck.
  6. */
  7. /* $Id$ */
  8. #ifndef UTIL_OPT_TES_H
  9. #define UTIL_OPT_TES_H
  10. extern int state;
  11. #define KNOWN 1
  12. #define NOTREACHED 2
  13. /* util/opt/tes.c */
  14. void init_state(void);
  15. void tes_pseudos(void);
  16. void tes_instr(line_p lnp, line_p x, line_p y);
  17. void assign_label(num_p label);
  18. void do_inst_label(line_p lnp);
  19. #endif /* UTIL_OPT_TES_H */