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

« back to all changes in this revision

Viewing changes to compiler/alpha/aoptcpu.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: aoptcpu.pas,v 1.2 2002/09/07 15:25:10 peter Exp $
3
 
    Copyright (c) 1998-2000 by Jonas Maebe, member of the Free Pascal
4
 
    Development Team
5
 
 
6
 
    This unit implements the Alpha optimizer object
7
 
 
8
 
    This program is free software; you can redistribute it and/or modify
9
 
    it under the terms of the GNU General Public License as published by
10
 
    the Free Software Foundation; either version 2 of the License, or
11
 
    (at your option) any later version.
12
 
 
13
 
    This program is distributed in the hope that it will be useful,
14
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
    GNU General Public License for more details.
17
 
 
18
 
    You should have received a copy of the GNU General Public License
19
 
    along with this program; if not, write to the Free Software
20
 
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
 
 
22
 
 ****************************************************************************
23
 
}
24
 
 
25
 
 
26
 
Unit aoptcpu;
27
 
 
28
 
Interface
29
 
 
30
 
uses cpubase, aoptobj, aoptcpub;
31
 
 
32
 
Type
33
 
  TAOptCpu = Object(TAoptObj)
34
 
    { uses the same constructor as TAopObj }
35
 
  End;
36
 
 
37
 
Implementation
38
 
 
39
 
End.
40
 
{
41
 
 $Log: aoptcpu.pas,v $
42
 
 Revision 1.2  2002/09/07 15:25:10  peter
43
 
   * old logs removed and tabs fixed
44
 
 
45
 
 Revision 1.1  2002/08/18 09:06:54  florian
46
 
   * alpha files moved compiler/alpha
47
 
 
48
 
}