summaryrefslogtreecommitdiff
path: root/gcc/ada/nlists.ads
diff options
context:
space:
mode:
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-30 00:35:18 +0000
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-30 00:35:18 +0000
commit4e1acd2236ff3e5cfd76f0fa4d122f0125f015d2 (patch)
tree198706d5bf96ec605028f16bfcbbdaf4328e34b5 /gcc/ada/nlists.ads
parentccc0785b9daf6c7e288731436607bb0fe5078dd2 (diff)
downloadgcc-4e1acd2236ff3e5cfd76f0fa4d122f0125f015d2.tar.gz
Merged trunk at revision 161574 into branch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/ifunc@161575 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/nlists.ads')
-rw-r--r--gcc/ada/nlists.ads8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ada/nlists.ads b/gcc/ada/nlists.ads
index 3753936df10..cecf3a21db4 100644
--- a/gcc/ada/nlists.ads
+++ b/gcc/ada/nlists.ads
@@ -259,6 +259,14 @@ package Nlists is
pragma Inline (Prepend_To);
-- Like Prepend, but arguments are the other way round
+ procedure Prepend_List (List : List_Id; To : List_Id);
+ -- Prepends node list List to the start of node list To. On return,
+ -- List is reset to be empty.
+
+ procedure Prepend_List_To (To : List_Id; List : List_Id);
+ pragma Inline (Prepend_List_To);
+ -- Like Prepend_List, but arguments are the other way round
+
procedure Remove (Node : Node_Id);
-- Removes Node, which must be a node that is a member of a node list,
-- from this node list. The contents of Node are not otherwise affected.