aoptcpud.pas 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. $Id$
  3. Copyright (c) 1998-2000 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.2 2002-09-07 15:25:10 peter
  33. * old logs removed and tabs fixed
  34. Revision 1.1 2002/08/18 09:06:54 florian
  35. * alpha files moved compiler/alpha
  36. }