[gcc/devel/gccgo] [Ada] Use Standard.Natural on bit references to packed arrays

Ian Lance Taylor ian@gcc.gnu.org
Sun Jul 12 18:51:00 GMT 2020


https://gcc.gnu.org/g:0c6eef3096edafbcc857319efff2377dd63be7cb

commit 0c6eef3096edafbcc857319efff2377dd63be7cb
Author: Eric Botcazou <ebotcazou@adacore.com>
Date:   Mon Dec 16 11:18:59 2019 +0100

    [Ada] Use Standard.Natural on bit references to packed arrays
    
    2020-06-02  Eric Botcazou  <ebotcazou@adacore.com>
    
    gcc/ada/
    
            * exp_pakd.adb (Expand_Packed_Bit_Reference): Change type of
            reference from Universal_Integer to Standard_Natural.

Diff:
---
 gcc/ada/exp_pakd.adb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/ada/exp_pakd.adb b/gcc/ada/exp_pakd.adb
index 7dcf241e247..d125db17b32 100644
--- a/gcc/ada/exp_pakd.adb
+++ b/gcc/ada/exp_pakd.adb
@@ -1520,12 +1520,12 @@ package body Exp_Pakd is
       Get_Base_And_Bit_Offset (Prefix (N), Base, Offset);
 
       Rewrite (N,
-        Unchecked_Convert_To (Universal_Integer,
+        Unchecked_Convert_To (Standard_Natural,
           Make_Op_Mod (Loc,
             Left_Opnd => Offset,
             Right_Opnd => Make_Integer_Literal (Loc, System_Storage_Unit))));
 
-      Analyze_And_Resolve (N, Universal_Integer);
+      Analyze_And_Resolve (N, Standard_Natural);
    end Expand_Packed_Bit_Reference;
 
    ------------------------------------


More information about the Gcc-cvs mailing list