OSDN Git Service

* gcc-interface/misc.c (gnat_expand_expr): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-hesorg.ads
index 2e03766..e7b3880 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                     Copyright (C) 1995-2005 AdaCore                      --
+--                     Copyright (C) 1995-2006, AdaCore                     --
 --                                                                          --
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
 -- terms of the  GNU General Public License as published  by the Free Soft- --
@@ -39,8 +39,7 @@
 --  See also GNAT.Heap_Sort, a version that works with subprogram access
 --  parameters, allowing code sharing. The generic version is slightly more
 --  efficient but does not allow code sharing and has an interface that is
---  more awkward to use. The generic version is also Pure, while the access
---  subprogram version can only be Preelaborate.
+--  more awkward to use.
 
 --  There is also GNAT.Heap_Sort_A, which is now considered obsolete, but
 --  was an older version working with subprogram parameters. This version
@@ -58,14 +57,16 @@ generic
    with procedure Move (From : Natural; To : Natural);
    --  A procedure that moves the data item with index value From to the data
    --  item with index value To (the old value in To being lost). An index
-   --  value of zero is used for moves from and to a single temporary location
+   --  value of zero is used for moves from and to a single temporary location.
+   --  For best efficiency, this routine should be marked as inlined.
 
    with function Lt (Op1, Op2 : Natural) return Boolean;
    --  A function that compares two items and returns True if the item with
    --  index Op1 is less than the item with Index Op2, and False if the Op1
    --  item is greater than the Op2 item. If the two items are equal, then
    --  it does not matter whether True or False is returned (it is slightly
-   --  more efficient to return False).
+   --  more efficient to return False). For best efficiency, this routine
+   --  should be marked as inlined.
 
    --  Note on use of temporary location
 
@@ -77,7 +78,7 @@ generic
    --  zero will in this case be resolved at instantiation time.
 
 package GNAT.Heap_Sort_G is
-pragma Pure (Heap_Sort_G);
+   pragma Pure;
 
    procedure Sort (N : Natural);
    --  This procedures sorts items in the range from 1 to N into ascending