fpcdefs.inc 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {$ifdef FPC}
  2. {$ifdef DELPHI}
  3. {$mode delphi}
  4. {$asmmode intel}
  5. {$else}
  6. {$mode objfpc}
  7. {$H-}
  8. {$goto on}
  9. { This reduces the memory requirements a lot }
  10. {$PACKENUM 1}
  11. {$define FPCPROCVAR}
  12. {$ifdef I386}
  13. {$define USEEXCEPT}
  14. {$endif}
  15. {$endif}
  16. {$endif}
  17. {$ifdef DELPHI}
  18. {$H-}
  19. {$J+}
  20. {$Z1}
  21. {$undef FPCPROCVAR}
  22. {$define USEEXCEPT}
  23. {$endif}
  24. {$ifdef i386}
  25. {$define x86}
  26. {$else}
  27. {$define oldset}
  28. {$endif i386}
  29. {$ifdef x86_64}
  30. {$define x86}
  31. {$endif x86_64}
  32. {
  33. $Log$
  34. Revision 1.6 2002-08-19 18:17:48 carl
  35. + optimize64_op_const_reg implemented (optimizes 64-bit constant opcodes)
  36. * more fixes to m68k for 64-bit operations
  37. Revision 1.5 2002/08/15 15:11:53 carl
  38. * oldset define is now correct for all cpu's except i386
  39. * correct compilation problems because of the above
  40. Revision 1.4 2002/07/23 12:34:29 daniel
  41. * Readded old set code. To use it define 'oldset'. Activated by default
  42. for ppc.
  43. Revision 1.3 2002/07/04 18:56:50 florian
  44. + log added
  45. }
  46. {
  47. }