diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2020-07-13 11:47:16 +0200 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2020-10-20 03:21:26 -0400 |
commit | 87eb6d2c2a9a9fbea23b91c01fa64fcf1f3825df (patch) | |
tree | 2d9cf56fc7b9af05cde882ac1bb19d15fc7958d6 /gcc | |
parent | a335f6f4ee5cb4f7dbfef52e17bf854ae42c1216 (diff) | |
download | gcc-87eb6d2c2a9a9fbea23b91c01fa64fcf1f3825df.zip gcc-87eb6d2c2a9a9fbea23b91c01fa64fcf1f3825df.tar.gz gcc-87eb6d2c2a9a9fbea23b91c01fa64fcf1f3825df.tar.bz2 |
[Ada] Minor reorder subprogram declarations alphabetically
gcc/ada/
* exp_util.ads: Reorder declaration.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/exp_util.ads | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/exp_util.ads b/gcc/ada/exp_util.ads index bde640f..b3073bc 100644 --- a/gcc/ada/exp_util.ads +++ b/gcc/ada/exp_util.ads @@ -982,6 +982,11 @@ package Exp_Util is -- If so, returns the value K, otherwise returns zero. The caller checks -- that N is of an integer type. + function Predicate_Check_In_Scope (N : Node_Id) return Boolean; + -- Return True if predicate checks should be generated in the current + -- scope on the given node. Will return False for example when the current + -- scope is a predefined primitive operation. + procedure Process_Statements_For_Controlled_Objects (N : Node_Id); -- N is a node which contains a non-handled statement list. Inspect the -- statements looking for declarations of controlled objects. If at least @@ -1199,11 +1204,6 @@ package Exp_Util is function Within_Case_Or_If_Expression (N : Node_Id) return Boolean; -- Determine whether arbitrary node N is within a case or an if expression - function Predicate_Check_In_Scope (N : Node_Id) return Boolean; - -- Return True if predicate checks should be generated in the current - -- scope on the given node. Will return False for example when the current - -- scope is a predefined primitive operation. - private pragma Inline (Duplicate_Subexpr); pragma Inline (Force_Evaluation); |