fix typo in winnt.c
authorTrevor Saunders <tsaunders@mozilla.com>
Wed, 25 Jun 2014 16:36:49 +0000 (16:36 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Wed, 25 Jun 2014 16:36:49 +0000 (16:36 +0000)
gcc/

PR c/61612
* config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo.

From-SVN: r211986

gcc/ChangeLog
gcc/config/i386/winnt.c

index 9eb0524..fd7bec2 100644 (file)
@@ -1,5 +1,9 @@
 2014-06-25  Trevor Saunders  <tsaunders@mozilla.com>
 
+       * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo.
+
+2014-06-25  Trevor Saunders  <tsaunders@mozilla.com>
+
        PR bootstrap/61598
        * fold-const.c (fold_checksum_tree): Use a hash_table of const
        tree_node * instead of tree_node *.
index 7dbc39b..56cd1b2 100644 (file)
@@ -784,7 +784,7 @@ i386_find_on_wrapper_list (const char *target)
       char *bufptr;
       /* Breaks up the char array into separated strings
          strings and enter them into the hash table.  */
-      wrappers = new hash_table_c<wrapped_symbol_hasher> (8);
+      wrappers = new hash_table<wrapped_symbol_hasher> (8);
       for (bufptr = wrapper_list_buffer; *bufptr; ++bufptr)
        {
          char *found = NULL;