aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem_util.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2013-07-08 09:47:39 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2013-07-08 09:47:39 +0200
commit9e40f163c2948dd7550cbda5de582e84623e767b (patch)
tree69e24bf84cd90dc2f3e2b0d30abf8f6fd73e23e6 /gcc/ada/sem_util.adb
parent85f6a831a631b643880fe66e480af0c0b465ba9f (diff)
downloadgcc-9e40f163c2948dd7550cbda5de582e84623e767b.zip
gcc-9e40f163c2948dd7550cbda5de582e84623e767b.tar.gz
gcc-9e40f163c2948dd7550cbda5de582e84623e767b.tar.bz2
[multiple changes]
2013-07-08 Javier Miranda <miranda@adacore.com> * sem_ch8.adb (Save_Scope_Stack): Adding documentation. (Restore_Scope_Stack): Remove the elements of the list when the visibility of each entity is restored. 2013-07-08 Robert Dewar <dewar@adacore.com> * exp_ch9.adb, sem.ads, sem_util.adb: Minor reformatting. From-SVN: r200756
Diffstat (limited to 'gcc/ada/sem_util.adb')
-rw-r--r--gcc/ada/sem_util.adb5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/ada/sem_util.adb b/gcc/ada/sem_util.adb
index c914703..623d3c4 100644
--- a/gcc/ada/sem_util.adb
+++ b/gcc/ada/sem_util.adb
@@ -14144,9 +14144,8 @@ package body Sem_Util is
if Known_Static_Esize (Typ) then
Size := UI_To_Int (Esize (Typ));
- -- If the Esize (Object_Size) is unknown at compile-time, look at the
- -- RM_Size (Value_Size) since it may have been set by an explicit rep
- -- item.
+ -- If the Esize (Object_Size) is unknown at compile time, look at the
+ -- RM_Size (Value_Size) which may have been set by an explicit rep item.
elsif Known_Static_RM_Size (Typ) then
Size := UI_To_Int (RM_Size (Typ));