From: Trevor Saunders Date: Wed, 25 Jun 2014 16:36:49 +0000 (+0000) Subject: fix typo in winnt.c X-Git-Tag: upstream/12.2.0~62377 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81d0a226820c32b487bbb855e9873684f51400f8;p=platform%2Fupstream%2Fgcc.git fix typo in winnt.c gcc/ PR c/61612 * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo. From-SVN: r211986 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9eb0524..fd7bec2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2014-06-25 Trevor Saunders + * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo. + +2014-06-25 Trevor Saunders + PR bootstrap/61598 * fold-const.c (fold_checksum_tree): Use a hash_table of const tree_node * instead of tree_node *. diff --git a/gcc/config/i386/winnt.c b/gcc/config/i386/winnt.c index 7dbc39b..56cd1b2 100644 --- a/gcc/config/i386/winnt.c +++ b/gcc/config/i386/winnt.c @@ -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 (8); + wrappers = new hash_table (8); for (bufptr = wrapper_list_buffer; *bufptr; ++bufptr) { char *found = NULL;