* mangle.c (get_identifier_nocopy): Add cast.
authorMark Mitchell <mark@codesourcery.com>
Wed, 25 Aug 2004 19:23:11 +0000 (19:23 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 25 Aug 2004 19:23:11 +0000 (19:23 +0000)
From-SVN: r86567

gcc/cp/ChangeLog
gcc/cp/mangle.c

index 4c43dce96f1df523b99de8f9a9e7c609b98620e8..3b5498e2635e3fcc32e69296fe9e270ba1389f51 100644 (file)
@@ -1,5 +1,7 @@
 2004-08-25  Mark Mitchell  <mark@codesourcery.com>
 
+       * mangle.c (get_identifier_nocopy): Add cast.
+
        * cp-tree.h (mangle_type): Remove.
        * mangle.c (globals): GTY it.
        (mangle_obstack): New variable.
index b491fccf17efcb9ab768e2f0a6f12c0d1c1a05fd..8405a5de63ada9148b13a4f01c2f7872dc55a2bc 100644 (file)
@@ -2491,7 +2491,7 @@ mangle_decl_string (const tree decl)
 static inline tree
 get_identifier_nocopy (const char *name)
 {
-  hashnode ht_node = ht_lookup (ident_hash, name, 
+  hashnode ht_node = ht_lookup (ident_hash, (const unsigned char *) name, 
                                strlen (name), HT_ALLOCED);
   return HT_IDENT_TO_GCC_IDENT (ht_node);
 }