public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [Patch]: fix typo in rs6000.c (AIX bootstrap broken)
@ 2011-10-13 15:41 Tristan Gingold
  2011-10-18 11:36 ` Tristan Gingold
  0 siblings, 1 reply; 4+ messages in thread
From: Tristan Gingold @ 2011-10-13 15:41 UTC (permalink / raw)
  To: GCC Patches

Hi,

looks like an obvious typo.  Ok for trunk ?

Tristan.

2011-10-13  Tristan Gingold  <gingold@adacore.com>

	* config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.

diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 4fd2192..3bfe33e 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -12213,7 +12213,7 @@ rs6000_init_builtins (void)
 
 #if TARGET_XCOFF
   /* AIX libm provides clog as __clog.  */
-  if ((tdecl = builtin_decl_explicit ([BUILT_IN_CLOG))) != NULL_TREE)
+  if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
     set_user_assembler_name (tdecl, "__clog");
 #endif
 

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

* Re: [Patch]: fix typo in rs6000.c (AIX bootstrap broken)
  2011-10-13 15:41 [Patch]: fix typo in rs6000.c (AIX bootstrap broken) Tristan Gingold
@ 2011-10-18 11:36 ` Tristan Gingold
  2011-10-18 14:43   ` David Edelsohn
  0 siblings, 1 reply; 4+ messages in thread
From: Tristan Gingold @ 2011-10-18 11:36 UTC (permalink / raw)
  To: David Edelsohn; +Cc: GCC Patches

Ping…

On Oct 13, 2011, at 5:11 PM, Tristan Gingold wrote:

> Hi,
> 
> looks like an obvious typo.  Ok for trunk ?
> 
> Tristan.
> 
> 2011-10-13  Tristan Gingold  <gingold@adacore.com>
> 
> 	* config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.
> 
> diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
> index 4fd2192..3bfe33e 100644
> --- a/gcc/config/rs6000/rs6000.c
> +++ b/gcc/config/rs6000/rs6000.c
> @@ -12213,7 +12213,7 @@ rs6000_init_builtins (void)
> 
> #if TARGET_XCOFF
>   /* AIX libm provides clog as __clog.  */
> -  if ((tdecl = builtin_decl_explicit ([BUILT_IN_CLOG))) != NULL_TREE)
> +  if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
>     set_user_assembler_name (tdecl, "__clog");
> #endif
> 
> 

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

* Re: [Patch]: fix typo in rs6000.c (AIX bootstrap broken)
  2011-10-18 11:36 ` Tristan Gingold
@ 2011-10-18 14:43   ` David Edelsohn
  2011-10-18 14:51     ` Tristan Gingold
  0 siblings, 1 reply; 4+ messages in thread
From: David Edelsohn @ 2011-10-18 14:43 UTC (permalink / raw)
  To: Tristan Gingold; +Cc: GCC Patches

Tristan,

Mike fixed the typo already.  Why are you still seeing a problem?

- David

On Tue, Oct 18, 2011 at 6:52 AM, Tristan Gingold <gingold@adacore.com> wrote:
> Ping…
>
> On Oct 13, 2011, at 5:11 PM, Tristan Gingold wrote:
>
>> Hi,
>>
>> looks like an obvious typo.  Ok for trunk ?
>>
>> Tristan.
>>
>> 2011-10-13  Tristan Gingold  <gingold@adacore.com>
>>
>>       * config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.
>>
>> diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
>> index 4fd2192..3bfe33e 100644
>> --- a/gcc/config/rs6000/rs6000.c
>> +++ b/gcc/config/rs6000/rs6000.c
>> @@ -12213,7 +12213,7 @@ rs6000_init_builtins (void)
>>
>> #if TARGET_XCOFF
>>   /* AIX libm provides clog as __clog.  */
>> -  if ((tdecl = builtin_decl_explicit ([BUILT_IN_CLOG))) != NULL_TREE)
>> +  if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
>>     set_user_assembler_name (tdecl, "__clog");
>> #endif
>>
>>
>
>

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

* Re: [Patch]: fix typo in rs6000.c (AIX bootstrap broken)
  2011-10-18 14:43   ` David Edelsohn
@ 2011-10-18 14:51     ` Tristan Gingold
  0 siblings, 0 replies; 4+ messages in thread
From: Tristan Gingold @ 2011-10-18 14:51 UTC (permalink / raw)
  To: David Edelsohn; +Cc: GCC Patches


On Oct 18, 2011, at 4:23 PM, David Edelsohn wrote:

> Tristan,
> 
> Mike fixed the typo already.  Why are you still seeing a problem?

Indeed, was fixed later.

Tristan.

> 
> - David
> 
> On Tue, Oct 18, 2011 at 6:52 AM, Tristan Gingold <gingold@adacore.com> wrote:
>> Ping…
>> 
>> On Oct 13, 2011, at 5:11 PM, Tristan Gingold wrote:
>> 
>>> Hi,
>>> 
>>> looks like an obvious typo.  Ok for trunk ?
>>> 
>>> Tristan.
>>> 
>>> 2011-10-13  Tristan Gingold  <gingold@adacore.com>
>>> 
>>>       * config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.
>>> 
>>> diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
>>> index 4fd2192..3bfe33e 100644
>>> --- a/gcc/config/rs6000/rs6000.c
>>> +++ b/gcc/config/rs6000/rs6000.c
>>> @@ -12213,7 +12213,7 @@ rs6000_init_builtins (void)
>>> 
>>> #if TARGET_XCOFF
>>>   /* AIX libm provides clog as __clog.  */
>>> -  if ((tdecl = builtin_decl_explicit ([BUILT_IN_CLOG))) != NULL_TREE)
>>> +  if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
>>>     set_user_assembler_name (tdecl, "__clog");
>>> #endif
>>> 
>>> 
>> 
>> 

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

end of thread, other threads:[~2011-10-18 14:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-13 15:41 [Patch]: fix typo in rs6000.c (AIX bootstrap broken) Tristan Gingold
2011-10-18 11:36 ` Tristan Gingold
2011-10-18 14:43   ` David Edelsohn
2011-10-18 14:51     ` Tristan Gingold

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).