diff options
Diffstat (limited to 'gcc/ada/utils.c')
-rw-r--r-- | gcc/ada/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index 6d8f637bf45..58b7af6445a 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -2022,7 +2022,7 @@ gnat_type_for_mode (mode, unsignedp) /* Return the unsigned version of a TYPE_NODE, a scalar type. */ tree -unsigned_type (type_node) +gnat_unsigned_type (type_node) tree type_node; { tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 1); @@ -2046,7 +2046,7 @@ unsigned_type (type_node) /* Return the signed version of a TYPE_NODE, a scalar type. */ tree -signed_type (type_node) +gnat_signed_type (type_node) tree type_node; { tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 0); @@ -2071,7 +2071,7 @@ signed_type (type_node) UNSIGNEDP. */ tree -signed_or_unsigned_type (unsignedp, type) +gnat_signed_or_unsigned_type (unsignedp, type) int unsignedp; tree type; { |