2
0

aoptcpud.pas 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Jonas Maebe, member of the Free Pascal
  4. Development Team
  5. This unit contains the processor specific implementation of the
  6. assembler optimizer data flow analyzer.
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ****************************************************************************
  19. }
  20. Unit aoptcpud;
  21. Interface
  22. uses
  23. AOptDA;
  24. Type
  25. PAOptDFACpu = ^TAOptDFACpu;
  26. TAOptDFACpu = Object(TAOptDFA)
  27. End;
  28. Implementation
  29. End.
  30. {
  31. $Log$
  32. Revision 1.4 2002-05-18 13:34:26 peter
  33. * readded missing revisions
  34. Revision 1.3 2002/05/16 19:46:53 carl
  35. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  36. + try to fix temp allocation (still in ifdef)
  37. + generic constructor calls
  38. + start of tassembler / tmodulebase class cleanup
  39. }