Commit 3f36f73c by Robert Dewar Committed by Arnaud Charlet

s-carun8.ads: Minor reformatting

2008-05-26  Robert Dewar  <dewar@adacore.com>

	* s-carun8.ads: Minor reformatting

From-SVN: r135902
parent e23fbee4
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- 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 -- -- 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- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -49,20 +49,20 @@ package System.Compare_Array_Unsigned_8 is ...@@ -49,20 +49,20 @@ package System.Compare_Array_Unsigned_8 is
Right : System.Address; Right : System.Address;
Left_Len : Natural; Left_Len : Natural;
Right_Len : Natural) return Integer; Right_Len : Natural) return Integer;
-- Compare the array starting at address Left of length Left_Len -- Compare the array starting at address Left of length Left_Len with the
-- with the array starting at address Right of length Right_Len. -- array starting at address Right of length Right_Len. The comparison is
-- The comparison is in the normal Ada semantic sense of array -- in the normal Ada semantic sense of array comparison. The result is -1,
-- comparison. The result is -1,0,+1 for Left<Right, Left=Right, -- 0, +1 for Left < Right, Left = Right, Left > Right respectively. This
-- Left>Right respectively. This function works with 4 byte words -- function works with 4 byte words if the operands are aligned on 4-byte
-- if the operands are aligned on 4-byte boundaries and long enough. -- boundaries and long enough.
function Compare_Array_U8_Unaligned function Compare_Array_U8_Unaligned
(Left : System.Address; (Left : System.Address;
Right : System.Address; Right : System.Address;
Left_Len : Natural; Left_Len : Natural;
Right_Len : Natural) return Integer; Right_Len : Natural) return Integer;
-- Same functionality as Compare_Array_U8 but always proceeds by -- Same functionality as Compare_Array_U8 but always proceeds by bytes.
-- bytes. Used when the caller knows that the operands are unaligned, -- Used when the caller knows that the operands are unaligned, or short
-- or short enough that it makes no sense to go by words. -- enough that it makes no sense to go by words.
end System.Compare_Array_Unsigned_8; end System.Compare_Array_Unsigned_8;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment