mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 15:39:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
    $Id$
 | 
						|
    Copyright (c) 2000 by Florian Klaempfl
 | 
						|
 | 
						|
    Basic node handling
 | 
						|
 | 
						|
    This program is free software; you can redistribute it and/or modify
 | 
						|
    it under the terms of the GNU General Public License as published by
 | 
						|
    the Free Software Foundation; either version 2 of the License, or
 | 
						|
    (at your option) any later version.
 | 
						|
 | 
						|
    This program is distributed in the hope that it will be useful,
 | 
						|
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
    GNU General Public License for more details.
 | 
						|
 | 
						|
    You should have received a copy of the GNU General Public License
 | 
						|
    along with this program; if not, write to the Free Software
 | 
						|
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
 | 
						|
 ****************************************************************************
 | 
						|
}
 | 
						|
unit node;
 | 
						|
 | 
						|
{$i defines.inc}
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
    uses
 | 
						|
       cobjects,
 | 
						|
       globtype,
 | 
						|
       cpubase,
 | 
						|
       aasm,
 | 
						|
       symtype;
 | 
						|
 | 
						|
    {$I nodeh.inc}
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
    uses
 | 
						|
       cutils,
 | 
						|
       globals;
 | 
						|
 | 
						|
    {$I node.inc}
 | 
						|
 | 
						|
end.
 | 
						|
{
 | 
						|
  $Log$
 | 
						|
  Revision 1.10  2000-11-29 00:30:34  florian
 | 
						|
    * unused units removed from uses clause
 | 
						|
    * some changes for widestrings
 | 
						|
 | 
						|
  Revision 1.9  2000/10/31 22:02:49  peter
 | 
						|
    * symtable splitted, no real code changes
 | 
						|
 | 
						|
  Revision 1.8  2000/10/01 19:48:24  peter
 | 
						|
    * lot of compile updates for cg11
 | 
						|
 | 
						|
  Revision 1.7  2000/09/30 16:08:45  peter
 | 
						|
    * more cg11 updates
 | 
						|
 | 
						|
  Revision 1.6  2000/09/28 19:49:52  florian
 | 
						|
  *** empty log message ***
 | 
						|
 | 
						|
  Revision 1.5  2000/09/27 18:14:31  florian
 | 
						|
    * fixed a lot of syntax errors in the n*.pas stuff
 | 
						|
 | 
						|
  Revision 1.4  2000/09/24 15:06:19  peter
 | 
						|
    * use defines.inc
 | 
						|
 | 
						|
  Revision 1.3  2000/09/22 21:45:35  florian
 | 
						|
    * some updates e.g. getcopy added
 | 
						|
 | 
						|
  Revision 1.2  2000/09/20 21:52:38  florian
 | 
						|
    * removed a lot of errors
 | 
						|
 | 
						|
  Revision 1.1  2000/08/26 12:27:35  florian
 | 
						|
    * initial release
 | 
						|
}
 |