summaryrefslogtreecommitdiff
path: root/gcc/ada/s-carun8.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-05-26 09:40:47 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-05-26 09:40:47 +0000
commit5b7f97cf051eebd74667679c005496ef524fa24f (patch)
tree8982f335f5f1a2fda3dc8e2036ea792091859bba /gcc/ada/s-carun8.ads
parent1706785f22d78306c7ff6e1845cc3885ff197b7a (diff)
downloadgcc-5b7f97cf051eebd74667679c005496ef524fa24f.tar.gz
2008-05-26 Robert Dewar <dewar@adacore.com>
* s-carun8.ads: Minor reformatting git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135902 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-carun8.ads')
-rw-r--r--gcc/ada/s-carun8.ads20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/ada/s-carun8.ads b/gcc/ada/s-carun8.ads
index 2bbbe6a08d3..fde805b45d3 100644
--- a/gcc/ada/s-carun8.ads
+++ b/gcc/ada/s-carun8.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 2002-2007, Free Software Foundation, Inc. --
+-- Copyright (C) 2002-2008, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -49,20 +49,20 @@ package System.Compare_Array_Unsigned_8 is
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer;
- -- Compare the array starting at address Left of length Left_Len
- -- with the array starting at address Right of length Right_Len.
- -- The comparison is in the normal Ada semantic sense of array
- -- comparison. The result is -1,0,+1 for Left<Right, Left=Right,
- -- Left>Right respectively. This function works with 4 byte words
- -- if the operands are aligned on 4-byte boundaries and long enough.
+ -- Compare the array starting at address Left of length Left_Len with the
+ -- array starting at address Right of length Right_Len. The comparison is
+ -- in the normal Ada semantic sense of array comparison. The result is -1,
+ -- 0, +1 for Left < Right, Left = Right, Left > Right respectively. This
+ -- function works with 4 byte words if the operands are aligned on 4-byte
+ -- boundaries and long enough.
function Compare_Array_U8_Unaligned
(Left : System.Address;
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer;
- -- Same functionality as Compare_Array_U8 but always proceeds by
- -- bytes. Used when the caller knows that the operands are unaligned,
- -- or short enough that it makes no sense to go by words.
+ -- Same functionality as Compare_Array_U8 but always proceeds by bytes.
+ -- Used when the caller knows that the operands are unaligned, or short
+ -- enough that it makes no sense to go by words.
end System.Compare_Array_Unsigned_8;