cg64f32.pas 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. $Id$
  3. Copyright (c) 1998-2000 by Florian Klaempfl
  4. Member of the Free Pascal development team
  5. This unit implements the code generation for 64 bit int
  6. arithmethics on 32 bit processors
  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 cgi64f32;
  21. interface
  22. uses
  23. cgobj;
  24. implementation
  25. uses
  26. nmem;
  27. procedure int64f32_assignment_int64_reg(p : passignmentnode);
  28. begin
  29. end;
  30. begin
  31. p2_assignment:=@int64f32_assignement_int64;
  32. end.
  33. {
  34. $Log$
  35. Revision 1.1 2000-07-13 06:30:07 michael
  36. + Initial import
  37. Revision 1.1 2000/03/01 15:36:13 florian
  38. * some new stuff for the new cg
  39. }