diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-11-15 15:05:30 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-11-15 15:05:30 +0100 |
commit | aa63543913b12c7774820c8761b935be8ad0ea64 (patch) | |
tree | c8c0214f8548fc9f765b31c6ab8a74a3686229ef /gcc/ada/s-bitops.adb | |
parent | 45b5a7a1b03817f89bef5e0d4c78b4dcf4d26e4c (diff) | |
download | gcc-aa63543913b12c7774820c8761b935be8ad0ea64.tar.gz |
[multiple changes]
2005-11-14 Vincent Celier <celier@adacore.com>
* makegpr.adb (Gprmake): Do not attempt to build the global archive if
there is no object directory.
2005-11-14 Robert Dewar <dewar@adacore.com>
* usage.adb: Minor adjustment to output format, use nn instead of nnn
(so that -gnateInnn does not run into next column)
2005-11-14 Ed Falis <falis@adacore.com>
* s-bitops.adb (Bits_Array): corrected comment: "unconstrained" =>
"constrained"
2005-11-14 Cyrille Comar <comar@adacore.com>
* s-chepoo.ads: Add comments on Dereference.
Remove unnecessary inherited abstract primitives.
Cosmetic cleanup.
2005-11-14 Robert Dewar <dewar@adacore.com>
* sem_cat.ads (Validate_Access_Type_Declaration): Remove declaration
node parameter, not needed, since it is available as Declaration_Node.
2005-11-14 Geert Bosch <bosch@adacore.com>
* s-exnllf.adb (Exn_LLF): Fix comment to be more precise and
grammatically correct.
2005-11-14 Vincent Celier <celier@adacore.com>
* s-fileio.ads: Correct spelling error in comment
From-SVN: r107014
Diffstat (limited to 'gcc/ada/s-bitops.adb')
-rw-r--r-- | gcc/ada/s-bitops.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/s-bitops.adb b/gcc/ada/s-bitops.adb index 0ac62c32781..2224ff0a650 100644 --- a/gcc/ada/s-bitops.adb +++ b/gcc/ada/s-bitops.adb @@ -40,7 +40,7 @@ with Unchecked_Conversion; package body System.Bit_Ops is subtype Bits_Array is System.Unsigned_Types.Packed_Bytes1 (Positive); - -- Unconstrained array used to interprete the address values. We use the + -- Constrained array used to interpret the address values. We use the -- unaligned version always, since this will handle both the aligned and -- unaligned cases, and we always do these operations by bytes anyway. -- Note: we use a ones origin array here so that the computations of the |