On Sat, Dec 1, 2012 at 11:12 PM, Kai Tietz <ktiet...@googlemail.com> wrote: > Ping > > 2012/11/29 Kai Tietz <ktiet...@googlemail.com>: >> Hello, >> >> this trivial patch fixes a bootstrap issue on LLP64 hosts. >> >> ChangeLog >> >> 2012-11-29 Kai Tietz >> >> PR target/53912 >> * print-tree.c (print_node): Cast from pointer via uintptr_t. >> >> Tested for i686-w64-mingw32, x86_64-w64-mingw32, and >> x86_64-unknown-gnu-linux. Ok for apply? >> >> Regards, >> Kai >> >> Index: print-tree.c >> =================================================================== >> --- print-tree.c (Revision 193925) >> +++ print-tree.c (Arbeitskopie) >> @@ -255,7 +255,7 @@ print_node (FILE *file, const char *prefix, tree n >> /* Allow this function to be called if the table is not there. */ >> if (table) >> { >> - hash = ((unsigned long) node) % HASH_SIZE; >> + hash = ((uintptr_t) node) % HASH_SIZE; >> >> /* If node is in the table, just mention its address. */ >> for (b = table[hash]; b; b = b->next)
Ping.