public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types
       [not found] <bug-92880-4@http.gcc.gnu.org/bugzilla/>
@ 2024-04-15  7:31 ` pinskia at gcc dot gnu.org
  2024-04-16  0:27 ` pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-04-15  7:31 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92880

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |pinskia at gcc dot gnu.org

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I am going to make a slight change to the documentation.
Right now it reads:
```
All the basic integer types can be used as base types, both as signed and as
unsigned: char, short, int, long, long long. In addition, float and double can
be used to build floating-point vector types.

```

But I am going to add a mention of typedefs.
Something like:
```
All the basic integer types can be used as base types (and typedefs of them),
both as signed and as unsigned: char, short, int, long, long long. In addition,
float and double can be used to build floating-point vector types.

```

Which then will fix the documentation here.

There is still more to be done in vector documentation but that is PR 107796 .

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

* [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types
       [not found] <bug-92880-4@http.gcc.gnu.org/bugzilla/>
  2024-04-15  7:31 ` [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types pinskia at gcc dot gnu.org
@ 2024-04-16  0:27 ` pinskia at gcc dot gnu.org
  2024-04-16 15:38 ` cvs-commit at gcc dot gnu.org
  2024-04-16 15:39 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-04-16  0:27 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92880

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://gcc.gnu.org/piperma
                   |                            |il/gcc-patches/2024-April/6
                   |                            |49523.html
           Keywords|                            |patch

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Patch submitted:
https://gcc.gnu.org/pipermail/gcc-patches/2024-April/649523.html

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

* [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types
       [not found] <bug-92880-4@http.gcc.gnu.org/bugzilla/>
  2024-04-15  7:31 ` [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types pinskia at gcc dot gnu.org
  2024-04-16  0:27 ` pinskia at gcc dot gnu.org
@ 2024-04-16 15:38 ` cvs-commit at gcc dot gnu.org
  2024-04-16 15:39 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-04-16 15:38 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92880

--- Comment #6 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Andrew Pinski <pinskia@gcc.gnu.org>:

https://gcc.gnu.org/g:8eddd87da2dd01c841f9742f973f65ebe0a88e71

commit r14-9994-g8eddd87da2dd01c841f9742f973f65ebe0a88e71
Author: Andrew Pinski <quic_apinski@quicinc.com>
Date:   Mon Apr 15 17:13:36 2024 -0700

    Document that vector_size works with typedefs [PR92880]

    This just adds a clause to make it more obvious that the vector_size
    attribute extension works with typedefs.
    Note this whole section needs a rewrite to be a similar format as other
    extensions. But that is for another day.

    gcc/ChangeLog:

            PR c/92880
            * doc/extend.texi (Using Vector Instructions): Add that
            the base_types could be a typedef of them.

    Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>

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

* [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types
       [not found] <bug-92880-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2024-04-16 15:38 ` cvs-commit at gcc dot gnu.org
@ 2024-04-16 15:39 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-04-16 15:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92880

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
   Target Milestone|---                         |14.0
         Resolution|---                         |FIXED

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Documentation has been updated to include typedefs (though not using typedefs
as an example).

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

end of thread, other threads:[~2024-04-16 15:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-92880-4@http.gcc.gnu.org/bugzilla/>
2024-04-15  7:31 ` [Bug c/92880] Documentation for Built-in Vector-Extensions should mention C99 Fixed-width ints as base types pinskia at gcc dot gnu.org
2024-04-16  0:27 ` pinskia at gcc dot gnu.org
2024-04-16 15:38 ` cvs-commit at gcc dot gnu.org
2024-04-16 15:39 ` pinskia at gcc dot gnu.org

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