diff options
author | Arnaud Charlet <charlet@adacore.com> | 2020-01-01 15:19:05 -0500 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2020-06-03 06:01:26 -0400 |
commit | ba2034610fcc0d56dd52cb20c26f9ab1997b520e (patch) | |
tree | 5260826d088dfa1346429c93e923ffd7866428bb /gcc/ada/atree.ads | |
parent | bad8184e3e16dfd4d30099e18e443c4a54b97c83 (diff) | |
download | gcc-ba2034610fcc0d56dd52cb20c26f9ab1997b520e.tar.gz |
[Ada] Remove ASIS tree generation
2020-06-03 Arnaud Charlet <charlet@adacore.com>
gcc/ada/
* aspects.adb, aspects.ads, atree.adb, atree.ads, elists.adb,
elists.ads, fname.adb, fname.ads, gnat1drv.adb, lib.adb,
lib.ads, namet.adb, namet.ads, nlists.adb, nlists.ads, opt.adb,
opt.ads, osint-c.adb, osint-c.ads, repinfo.adb, repinfo.ads,
sem_aux.adb, sem_aux.ads, sinput.adb, sinput.ads, stand.ads,
stringt.adb, stringt.ads, switch-c.adb, table.adb, table.ads,
uintp.adb, uintp.ads, urealp.adb, urealp.ads (Tree_Read,
Tree_Write): Remove generation of ASIS trees.
* doc/gnat_ugn/building_executable_programs_with_gnat.rst:
Remove -gnatt and -gnatct documentation.
* gnat_ugn.texi: Regenerate.
* tree_in.ads, tree_in.adb, tree_io.ads, tree_io.adb,
tree_gen.ads, tree_gen.adb, stand.adb: Remove.
* gcc-interface/Makefile.in, gcc-interface/Make-lang.in: Remove
references to tree_gen.o tree_in.o tree_io.o.
Diffstat (limited to 'gcc/ada/atree.ads')
-rw-r--r-- | gcc/ada/atree.ads | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/gcc/ada/atree.ads b/gcc/ada/atree.ads index 3aa22e6ac16..f9ebc38e554 100644 --- a/gcc/ada/atree.ads +++ b/gcc/ada/atree.ads @@ -406,8 +406,7 @@ package Atree is procedure Initialize; -- Called at the start of compilation to initialize the allocation of -- the node and list tables and make the standard entries for Empty, - -- Error and Error_List. Note that Initialize must not be called if - -- Tree_Read is used. + -- Error and Error_List. procedure Lock; -- Called before the back end is invoked to lock the nodes table @@ -425,15 +424,6 @@ package Atree is -- Called to unlock entity modifications when assertions are enabled; if -- assertions are not enabled calling this subprogram has no effect. - procedure Tree_Read; - -- Initializes internal tables from current tree file using the relevant - -- Table.Tree_Read routines. Note that Initialize should not be called if - -- Tree_Read is used. Tree_Read includes all necessary initialization. - - procedure Tree_Write; - -- Writes out internal tables to current tree file using the relevant - -- Table.Tree_Write routines. - function New_Node (New_Node_Kind : Node_Kind; New_Sloc : Source_Ptr) return Node_Id; |