summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-11-15 13:59:50 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-11-15 13:59:50 +0000
commit5d538f4fe783e07bd7f2a087eb1b9d49ee8544a0 (patch)
tree1b759ec15d50dffc46576e7ebe383d4fdf50a3a4
parentc1ed6e1f156fc7a1231f292e6459dae1bac798c5 (diff)
downloadgcc-5d538f4fe783e07bd7f2a087eb1b9d49ee8544a0.tar.gz
2005-11-14 Robert Dewar <dewar@adacore.com>
* g-spitbo.adb: (Hash): Rotate by 3 instead of 1 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106985 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ada/g-spitbo.adb4
1 files 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;