~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to compiler/sparc/cpunode.pas

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2005-05-30 11:59:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050530115910-x5pbzm4qqta4i94h
Tags: 2.0.0-2
debian/fp-compiler.postinst.in: forgot to reapply the patch that
correctly creates the slave link to pc(1).  (Closes: #310907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{******************************************************************************
2
 
    $Id: cpunode.pas,v 1.8 2003/08/11 09:05:09 mazen Exp $
 
2
    $Id: cpunode.pas,v 1.13 2005/02/14 17:13:10 peter Exp $
3
3
    Copyright (c) 2000 by Florian Klaempfl
4
4
 
5
5
    Includes the iSPARC code generator
20
20
 
21
21
 *****************************************************************************}
22
22
unit CpuNode;
23
 
{$INCLUDE fpcdefs.inc}
 
23
 
 
24
{$I fpcdefs.inc}
 
25
 
24
26
interface
25
 
{This unit is used to define the specific CPU implementations. All needed
 
27
{ This unit is used to define the specific CPU implementations. All needed
26
28
actions are included in the INITALIZATION part of these units. This explains
27
 
the behaviour of such a unit having just a USES clause!}
 
29
the behaviour of such a unit having just a USES clause! }
 
30
 
28
31
implementation
29
 
uses
30
 
  ncgbas,ncgflw,ncgcnv,ncgld,ncgmem,ncgcon,
31
 
  ncpuadd,ncpucall,ncpumat,
32
 
  ncgset,ncpuinln,ncpucnv,
33
 
  { this not really a node }
34
 
  rgcpu;
 
32
 
 
33
  uses
 
34
    ncgbas,ncgflw,ncgcnv,ncgld,ncgmem,ncgcon,ncgset,
 
35
    ncpuadd,ncpucall,ncpumat,ncpuinln,ncpucnv,ncpuset,
 
36
    { this not really a node }
 
37
    rgcpu;
 
38
 
35
39
end.
36
40
{
37
41
    $Log: cpunode.pas,v $
38
 
    Revision 1.8  2003/08/11 09:05:09  mazen
39
 
    - Code cleaning : removed unused commentd units which equivalent were already added.
40
 
 
41
 
    Revision 1.7  2003/01/22 20:45:15  mazen
42
 
    * making math code in RTL compiling.
43
 
    *NB : This does NOT mean necessary that it will generate correct code!
44
 
 
45
 
    Revision 1.6  2002/12/21 23:21:47  mazen
46
 
    + added support for the shift nodes
47
 
    + added debug output on screen with -an command line option
48
 
 
49
 
    Revision 1.5  2002/11/30 20:03:29  mazen
50
 
    + ncpuinln node
 
42
    Revision 1.13  2005/02/14 17:13:10  peter
 
43
      * truncate log
 
44
 
 
45
    Revision 1.12  2005/01/24 22:08:33  peter
 
46
      * interface wrapper generation moved to cgobj
 
47
      * generate interface wrappers after the module is parsed
51
48
 
52
49
}