Daily bump.
[official-gcc.git] / gcc / ada / tree_gen.adb
blob2273d0fcc292eb48ac49e63764953fab50d54415
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- T R E E _ G E N --
6 -- --
7 -- B o d y --
8 -- --
9 -- $Revision: 1.1 $
10 -- --
11 -- Copyright (C) 1992-1999, Free Software Foundation, Inc. --
12 -- --
13 -- GNAT is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNAT; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
23 -- --
24 -- GNAT was originally developed by the GNAT team at New York University. --
25 -- Extensive contributions were provided by Ada Core Technologies Inc. --
26 -- --
27 ------------------------------------------------------------------------------
29 with Atree;
30 with Elists;
31 with Fname;
32 with Lib;
33 with Namet;
34 with Nlists;
35 with Opt;
36 with Osint;
37 with Repinfo;
38 with Sinput;
39 with Stand;
40 with Stringt;
41 with Uintp;
42 with Urealp;
44 procedure Tree_Gen is
45 begin
46 if Opt.Tree_Output then
47 Osint.Tree_Create;
48 Opt.Tree_Write;
49 Atree.Tree_Write;
50 Elists.Tree_Write;
51 Fname.Tree_Write;
52 Lib.Tree_Write;
53 Namet.Tree_Write;
54 Nlists.Tree_Write;
55 Sinput.Tree_Write;
56 Stand.Tree_Write;
57 Stringt.Tree_Write;
58 Uintp.Tree_Write;
59 Urealp.Tree_Write;
60 Repinfo.Tree_Write;
61 Osint.Tree_Close;
62 end if;
63 end Tree_Gen;