aoptcpud.pas 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. {$i fpcdefs.inc}
  22. Interface
  23. uses
  24. AOptDA;
  25. Type
  26. TAOptDFACpu = class(TAOptDFA)
  27. End;
  28. Implementation
  29. End.
  30. {
  31. $Log$
  32. Revision 1.2 2005-02-20 19:36:03 florian
  33. * optimizer files fixed
  34. Revision 1.1 2005/02/20 19:11:04 florian
  35. * initial commit
  36. Revision 1.6 2005/02/14 17:13:10 peter
  37. * truncate log
  38. }