public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/45587]  New: the processor(s) that read the .texi files mess up.
@ 2010-09-07 19:35 zadeck at naturalbridge dot com
  2010-09-07 19:54 ` [Bug other/45587] " joseph at codesourcery dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: zadeck at naturalbridge dot com @ 2010-09-07 19:35 UTC (permalink / raw)
  To: gcc-bugs

the lceil part of md.texi is:
======================
@cindex @code{lceil@var{m}@var{n}2}
@item @samp{lceil@var{m}2}
Convert operand 1 (valid for floating point mode @var{m}) to fixed
point mode @var{n} as a signed number rounding up and store in
operand 0 (which has mode @var{n}).
======================
which prints in both the info and in the html as:
======================
`lceilm2'
    Convert operand 1 (valid for floating point mode m) to fixed point mode n
as a signed number rounding up and store in operand 0 (which has mode n).
======================
note that the @var{n} does not print in the name.  it should be `lceilmn2'
this appears to be a systematic failure, not just with this entry.  However,
there are some where it comes out correctly, like lrintmn2.


-- 
           Summary: the processor(s) that read the .texi files mess up.
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: zadeck at naturalbridge dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

* [Bug other/45587] the processor(s) that read the .texi files mess up.
  2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
@ 2010-09-07 19:54 ` joseph at codesourcery dot com
  2010-09-07 20:31 ` zadeck at naturalbridge dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: joseph at codesourcery dot com @ 2010-09-07 19:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from joseph at codesourcery dot com  2010-09-07 19:54 -------
Subject: Re:   New: the processor(s) that read the .texi
 files mess up.

On Tue, 7 Sep 2010, zadeck at naturalbridge dot com wrote:

> @cindex @code{lceil@var{m}@var{n}2}

This is the index entry, with "n".

> @item @samp{lceil@var{m}2}

This is the part for the main text of the manual, without "n".

> Convert operand 1 (valid for floating point mode @var{m}) to fixed
> point mode @var{n} as a signed number rounding up and store in
> operand 0 (which has mode @var{n}).
> ======================
> which prints in both the info and in the html as:
> ======================
> `lceilm2'
>     Convert operand 1 (valid for floating point mode m) to fixed point mode n
> as a signed number rounding up and store in operand 0 (which has mode n).
> ======================
> note that the @var{n} does not print in the name.  it should be `lceilmn2'

@var{n} isn't in the name for the main manual, just for the index entry.  
If you look in the index, you'll probably find the @var{n} there.  Fix 
whichever of the @item and the @cindex is wrong to agree with whichever is 
right.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

* [Bug other/45587] the processor(s) that read the .texi files mess up.
  2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
  2010-09-07 19:54 ` [Bug other/45587] " joseph at codesourcery dot com
@ 2010-09-07 20:31 ` zadeck at naturalbridge dot com
  2010-09-07 20:43 ` zadeck at naturalbridge dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: zadeck at naturalbridge dot com @ 2010-09-07 20:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from zadeck at naturalbridge dot com  2010-09-07 20:31 -------
Subject: Re:  the processor(s) that read the .texi files
 mess up.

thanks, i will fix the doc and commit.

On 09/07/2010 03:54 PM, joseph at codesourcery dot com wrote:
> ------- Comment #1 from joseph at codesourcery dot com  2010-09-07 19:54 -------
> Subject: Re:   New: the processor(s) that read the .texi
>  files mess up.
>
> On Tue, 7 Sep 2010, zadeck at naturalbridge dot com wrote:
>
>   
>> @cindex @code{lceil@var{m}@var{n}2}
>>     
> This is the index entry, with "n".
>
>   
>> @item @samp{lceil@var{m}2}
>>     
> This is the part for the main text of the manual, without "n".
>
>   
>> Convert operand 1 (valid for floating point mode @var{m}) to fixed
>> point mode @var{n} as a signed number rounding up and store in
>> operand 0 (which has mode @var{n}).
>> ======================
>> which prints in both the info and in the html as:
>> ======================
>> `lceilm2'
>>     Convert operand 1 (valid for floating point mode m) to fixed point mode n
>> as a signed number rounding up and store in operand 0 (which has mode n).
>> ======================
>> note that the @var{n} does not print in the name.  it should be `lceilmn2'
>>     
> @var{n} isn't in the name for the main manual, just for the index entry.  
> If you look in the index, you'll probably find the @var{n} there.  Fix 
> whichever of the @item and the @cindex is wrong to agree with whichever is 
> right.
>
>
>   


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

* [Bug other/45587] the processor(s) that read the .texi files mess up.
  2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
  2010-09-07 19:54 ` [Bug other/45587] " joseph at codesourcery dot com
  2010-09-07 20:31 ` zadeck at naturalbridge dot com
@ 2010-09-07 20:43 ` zadeck at naturalbridge dot com
  2010-09-08  3:39 ` zadeck at gcc dot gnu dot org
  2010-09-08  3:42 ` zadeck at naturalbridge dot com
  4 siblings, 0 replies; 6+ messages in thread
From: zadeck at naturalbridge dot com @ 2010-09-07 20:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from zadeck at naturalbridge dot com  2010-09-07 20:43 -------
i am fixing the doc as joseph suggests, this is not a bug with the tool.
will commit after i look at the results.


-- 

zadeck at naturalbridge dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

* [Bug other/45587] the processor(s) that read the .texi files mess up.
  2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
                   ` (2 preceding siblings ...)
  2010-09-07 20:43 ` zadeck at naturalbridge dot com
@ 2010-09-08  3:39 ` zadeck at gcc dot gnu dot org
  2010-09-08  3:42 ` zadeck at naturalbridge dot com
  4 siblings, 0 replies; 6+ messages in thread
From: zadeck at gcc dot gnu dot org @ 2010-09-08  3:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from zadeck at gcc dot gnu dot org  2010-09-08 03:38 -------
Subject: Bug 45587

Author: zadeck
Date: Wed Sep  8 03:38:40 2010
New Revision: 163987

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=163987
Log:
2010-09-08  Kenneth Zadeck <zadeck@naturalbridge.com>
        PR doc/45587
        * doc/md.texi: Fixed modes on several standard pattern names.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/doc/md.texi


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

* [Bug other/45587] the processor(s) that read the .texi files mess up.
  2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
                   ` (3 preceding siblings ...)
  2010-09-08  3:39 ` zadeck at gcc dot gnu dot org
@ 2010-09-08  3:42 ` zadeck at naturalbridge dot com
  4 siblings, 0 replies; 6+ messages in thread
From: zadeck at naturalbridge dot com @ 2010-09-08  3:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from zadeck at naturalbridge dot com  2010-09-08 03:42 -------
Subject: Re:  the processor(s) that read the .texi files
 mess up.



On 09/07/2010 11:38 PM, zadeck at gcc dot gnu dot org wrote:
> ------- Comment #4 from zadeck at gcc dot gnu dot org  2010-09-08 03:38 -------
> Subject: Bug 45587
>
> Author: zadeck
> Date: Wed Sep  8 03:38:40 2010
> New Revision: 163987
>
> URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=163987
> Log:
> 2010-09-08  Kenneth Zadeck <zadeck@naturalbridge.com>
>         PR doc/45587
>         * doc/md.texi: Fixed modes on several standard pattern names.
>
>
> Modified:
>     trunk/gcc/ChangeLog
>     trunk/gcc/doc/md.texi
>
>
>   


------- Comment #6 from zadeck at naturalbridge dot com  2010-09-08 03:42 -------
Created an attachment (id=21733)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=21733&action=view)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45587


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

end of thread, other threads:[~2010-09-08  3:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-07 19:35 [Bug other/45587] New: the processor(s) that read the .texi files mess up zadeck at naturalbridge dot com
2010-09-07 19:54 ` [Bug other/45587] " joseph at codesourcery dot com
2010-09-07 20:31 ` zadeck at naturalbridge dot com
2010-09-07 20:43 ` zadeck at naturalbridge dot com
2010-09-08  3:39 ` zadeck at gcc dot gnu dot org
2010-09-08  3:42 ` zadeck at naturalbridge dot com

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