aoptcpud.pas 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.3 2002-05-16 19:46:53 carl
  33. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  34. + try to fix temp allocation (still in ifdef)
  35. + generic constructor calls
  36. + start of tassembler / tmodulebase class cleanup
  37. Revision 1.1 2001/08/26 13:31:04 florian
  38. * some cg reorganisation
  39. * some PPC updates
  40. Revision 1.1 2000/07/13 06:30:12 michael
  41. + Initial import
  42. Revision 1.2 2000/01/07 01:14:57 peter
  43. * updated copyright to 2000
  44. Revision 1.1 1999/11/09 22:57:09 peter
  45. * compiles again both i386,alpha both with optimizer
  46. }