~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to compiler/arm/raarm.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
    $Id: raarm.pas,v 1.1 2003/11/17 23:23:47 florian Exp $
3
 
    Copyright (c) 1998-2003 by Carl Eric Codere and Peter Vreman
4
 
 
5
 
    Handles the common arm assembler reader routines
6
 
 
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
 
 
12
 
    This program is distributed in the hope that it will be useful,
13
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
    GNU General Public License for more details.
16
 
 
17
 
    You should have received a copy of the GNU General Public License
18
 
    along with this program; if not, write to the Free Software
19
 
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
 
 
21
 
 ****************************************************************************
22
 
}
23
 
unit raarm;
24
 
 
25
 
{$i fpcdefs.inc}
26
 
 
27
 
  interface
28
 
 
29
 
    uses
30
 
      cpubase,
31
 
      aasmtai,
32
 
      rautils;
33
 
 
34
 
    type
35
 
      TARMOperand=class(TOperand)
36
 
      end;
37
 
 
38
 
      TARMInstruction=class(TInstruction)
39
 
        oppostfix : toppostfix;
40
 
        function ConcatInstruction(p:TAAsmoutput) : tai;override;
41
 
      end;
42
 
 
43
 
  implementation
44
 
 
45
 
    uses
46
 
      aasmcpu;
47
 
 
48
 
    function TARMInstruction.ConcatInstruction(p:TAAsmoutput) : tai;
49
 
      begin
50
 
        result:=inherited ConcatInstruction(p);
51
 
        (result as taicpu).oppostfix:=oppostfix;
52
 
      end;
53
 
 
54
 
 
55
 
end.
56
 
{
57
 
  $Log: raarm.pas,v $
58
 
  Revision 1.1  2003/11/17 23:23:47  florian
59
 
    + first part of arm assembler reader
60
 
}