public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32
@ 2012-11-29 12:11 Kai Tietz
  2012-12-02  9:12 ` Kai Tietz
  0 siblings, 1 reply; 4+ messages in thread
From: Kai Tietz @ 2012-11-29 12:11 UTC (permalink / raw)
  To: GCC Patches

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)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32
  2012-11-29 12:11 [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32 Kai Tietz
@ 2012-12-02  9:12 ` Kai Tietz
  2012-12-09 16:18   ` NightStrike
  0 siblings, 1 reply; 4+ messages in thread
From: Kai Tietz @ 2012-12-02  9:12 UTC (permalink / raw)
  To: GCC Patches

Ping

2012/11/29 Kai Tietz <ktietz70@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)



-- 
|  (\_/) This is Bunny. Copy and paste
| (='.'=) Bunny into your signature to help
| (")_(") him gain world domination

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32
  2012-12-02  9:12 ` Kai Tietz
@ 2012-12-09 16:18   ` NightStrike
  2012-12-10  9:21     ` Richard Biener
  0 siblings, 1 reply; 4+ messages in thread
From: NightStrike @ 2012-12-09 16:18 UTC (permalink / raw)
  To: Kai Tietz; +Cc: GCC Patches

On Sat, Dec 1, 2012 at 11:12 PM, Kai Tietz <ktietz70@googlemail.com> wrote:
> Ping
>
> 2012/11/29 Kai Tietz <ktietz70@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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32
  2012-12-09 16:18   ` NightStrike
@ 2012-12-10  9:21     ` Richard Biener
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Biener @ 2012-12-10  9:21 UTC (permalink / raw)
  To: NightStrike; +Cc: Kai Tietz, GCC Patches

On Sun, Dec 9, 2012 at 5:18 PM, NightStrike <nightstrike@gmail.com> wrote:
> On Sat, Dec 1, 2012 at 11:12 PM, Kai Tietz <ktietz70@googlemail.com> wrote:
>> Ping
>>
>> 2012/11/29 Kai Tietz <ktietz70@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.

Ok.

Thanks,
Richard.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-12-10  9:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-29 12:11 [patch print-tree.c]: 5 of 7 Fix of PR target/53912 bootstrap fails using default c++ mode in stage 2 and 3 for native x86_64-w64-mingw32 Kai Tietz
2012-12-02  9:12 ` Kai Tietz
2012-12-09 16:18   ` NightStrike
2012-12-10  9:21     ` Richard Biener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).