Commit 81d0a226 by Trevor Saunders Committed by Trevor Saunders

fix typo in winnt.c

gcc/

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

From-SVN: r211986
parent 86fcf7ce
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 *.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment