gdb/
[deliverable/binutils-gdb.git] / gdb / dictionary.c
index 367389113ea9f1df373767be753832faa28dc167..8142d291bea1a3156a4aee1a15f3fa4eca421433 100644 (file)
@@ -83,9 +83,7 @@
 
    * Define a function dict_<op> that looks up <op> in the dict_vector
    and calls the appropriate function.  Add a declaration for
-   dict_<op> to dictionary.h.
-   
-*/
+   dict_<op> to dictionary.h.  */
 
 /* An enum representing the various implementations of dictionaries.
    Used only for debugging.  */
@@ -828,7 +826,7 @@ dict_hash (const char *string0)
            }
          /* FALL THROUGH */
        default:
-         hash = hash * 67 + *string - 113;
+         hash = SYMBOL_HASH_NEXT (hash, *string);
          string += 1;
          break;
        }
This page took 0.024547 seconds and 4 git commands to generate.