]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix nits
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Apr 2009 08:24:38 +0000 (08:24 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Apr 2009 08:24:38 +0000 (08:24 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146676 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/gcc-interface/decl.c
gcc/ada/gcc-interface/utils2.c

index 3575aa55b9dcfb52413c691ec0db3948fb0477fd..94f14bf6b06bb9ace32060ea22b17cf07b434666 100644 (file)
@@ -7393,7 +7393,7 @@ set_rm_size (Uint uint_size, tree gnu_type, Entity_Id gnat_entity)
       return;
     }
 
-  /* Otherwise, set the RM size proper for numerical types...  */
+  /* Otherwise, set the RM size proper for integral types...  */
   if ((TREE_CODE (gnu_type) == INTEGER_TYPE
        && Is_Discrete_Or_Fixed_Point_Type (gnat_entity))
       || (TREE_CODE (gnu_type) == ENUMERAL_TYPE
@@ -7853,7 +7853,7 @@ substitute_in_type (tree t, tree f, tree r)
 tree
 rm_size (tree gnu_type)
 {
-  /* For integer types, this is the precision.  */
+  /* For integral types, we store the RM size explicitly.  */
   if (INTEGRAL_TYPE_P (gnu_type) && TYPE_RM_SIZE (gnu_type))
     return TYPE_RM_SIZE (gnu_type);
 
index 3b2d526c65508d9b8e06dede4e0ecdae0f26783f..e5001ab7d4248a3b906e334dc05ffddb8e0221d2 100644 (file)
@@ -31,6 +31,7 @@
 #include "ggc.h"
 #include "flags.h"
 #include "output.h"
+
 #include "ada.h"
 #include "types.h"
 #include "atree.h"