From 11bfd18a18bc6e65888662dbc95cbab3049842fa Mon Sep 17 00:00:00 2001 From: Robert Dewar Date: Tue, 15 Nov 2005 14:59:50 +0100 Subject: [PATCH] g-spitbo.adb: (Hash): Rotate by 3 instead of 1 2005-11-14 Robert Dewar * g-spitbo.adb: (Hash): Rotate by 3 instead of 1 From-SVN: r106985 --- gcc/ada/g-spitbo.adb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/ada/g-spitbo.adb b/gcc/ada/g-spitbo.adb index 7bab3f4a638..3bceb9cce85 100644 --- a/gcc/ada/g-spitbo.adb +++ b/gcc/ada/g-spitbo.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1998-2005 Ada Core Technologies, Inc. -- +-- Copyright (C) 1998-2005, AdaCore -- -- -- -- 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- -- @@ -622,7 +622,7 @@ package body GNAT.Spitbol is begin for J in Str'Range loop - Result := Rotate_Left (Result, 1) + + Result := Rotate_Left (Result, 3) + Unsigned_32 (Character'Pos (Str (J))); end loop; -- 2.30.2