diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-05-12 10:08:10 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-05-12 10:08:10 +0200 |
commit | 0cc1540d55a2e7ff710588b78c0b6efc8dc6a51f (patch) | |
tree | 559b963f6e7c4987fc9aee7df337164a14153e5c | |
parent | 84dad5564e15efedd6e41950ae856ec3bb201052 (diff) | |
download | gcc-0cc1540d55a2e7ff710588b78c0b6efc8dc6a51f.zip gcc-0cc1540d55a2e7ff710588b78c0b6efc8dc6a51f.tar.gz gcc-0cc1540d55a2e7ff710588b78c0b6efc8dc6a51f.tar.bz2 |
Minor reformatting.
From-SVN: r223037
-rw-r--r-- | gcc/ada/exp_util.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/exp_util.adb b/gcc/ada/exp_util.adb index 5ae0a21..1bafe66 100644 --- a/gcc/ada/exp_util.adb +++ b/gcc/ada/exp_util.adb @@ -8133,7 +8133,7 @@ package body Exp_Util is begin -- If the expression is the RHS of an assignment or object declaration - -- we are always OK because there will always be a target. + -- we are always OK because there will always be a target. -- Object renaming declarations, (generated for view conversions of -- actuals in inlined calls), like object declarations, provide an @@ -8174,8 +8174,8 @@ package body Exp_Util is Otyp := Entity (Subtype_Mark (Exp)); end if; - -- The input type always comes from the expression, and we assume - -- this is indeed always analyzed, so we can simply get the Etype. + -- The input type always comes from the expression, and we assume this + -- is indeed always analyzed, so we can simply get the Etype. Ityp := Etype (Expression (Exp)); @@ -8246,8 +8246,8 @@ package body Exp_Util is then return True; - -- If either type is tagged, then we know the alignment is OK so - -- Gigi will be able to use pointer punning. + -- If either type is tagged, then we know the alignment is OK so Gigi + -- will be able to use pointer punning. elsif Is_Tagged_Type (Otyp) or else Is_Tagged_Type (Ityp) then return True; |