public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug sanitizer/89764] [8 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
@ 2021-05-04 12:01 ` rguenth at gcc dot gnu.org
  2021-05-14 11:47 ` [Bug sanitizer/89764] [9/10/11/12 " jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-05-04 12:01 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW

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

* [Bug sanitizer/89764] [9/10/11/12 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
  2021-05-04 12:01 ` [Bug sanitizer/89764] [8 Regression] ubsan diagnostic on generic lambdas decayed to function pointers rguenth at gcc dot gnu.org
@ 2021-05-14 11:47 ` jakub at gcc dot gnu.org
  2021-06-01  8:13 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-05-14 11:47 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|8.5                         |9.4
            Summary|[8 Regression] ubsan        |[9/10/11/12 Regression]
                   |diagnostic on generic       |ubsan diagnostic on generic
                   |lambdas decayed to function |lambdas decayed to function
                   |pointers                    |pointers

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
I can reproduce it even with 9.3, 10.1 and 11.1.
On the other side, on the bisect-seed box I can't reproduce, strange.

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

* [Bug sanitizer/89764] [9/10/11/12 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
  2021-05-04 12:01 ` [Bug sanitizer/89764] [8 Regression] ubsan diagnostic on generic lambdas decayed to function pointers rguenth at gcc dot gnu.org
  2021-05-14 11:47 ` [Bug sanitizer/89764] [9/10/11/12 " jakub at gcc dot gnu.org
@ 2021-06-01  8:13 ` rguenth at gcc dot gnu.org
  2021-12-28 23:18 ` pinskia at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-01  8:13 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.4                         |9.5

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9.4 is being released, retargeting bugs to GCC 9.5.

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

* [Bug sanitizer/89764] [9/10/11/12 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2021-06-01  8:13 ` rguenth at gcc dot gnu.org
@ 2021-12-28 23:18 ` pinskia at gcc dot gnu.org
  2022-01-21 13:49 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-12-28 23:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Jakub Jelinek from comment #4)
> I can reproduce it even with 9.3, 10.1 and 11.1.
> On the other side, on the bisect-seed box I can't reproduce, strange.

Even on godbolt I can only reproduce it on the GCC 8 releases.

__attribute__((no_sanitize (shift | shift-base | shift-exponent |
integer-divide-by-zero | undefined | unreachable | vla-bound | return | null |
signed-integer-overflow | bool | enum | bounds | alignment | nonnull-attribute
| returns-nonnull-attribute | object-size | vptr | pointer-overflow |
builtin)))


Gets added in the case of using int instead of auto on the GCC 8 branch.

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

* [Bug sanitizer/89764] [9/10/11/12 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2021-12-28 23:18 ` pinskia at gcc dot gnu.org
@ 2022-01-21 13:49 ` rguenth at gcc dot gnu.org
  2022-05-27  9:40 ` [Bug sanitizer/89764] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-01-21 13:49 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
it's unclear if anything besides GCC 8 is affected ... which I happen to not
have installed.  But I can't reproduce with GCC 7, 9, 10, 11 or trunk.

If only GCC 8 is/was affected we can close this bug.

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

* [Bug sanitizer/89764] [10/11/12/13 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2022-01-21 13:49 ` rguenth at gcc dot gnu.org
@ 2022-05-27  9:40 ` rguenth at gcc dot gnu.org
  2022-06-28 10:37 ` jakub at gcc dot gnu.org
  2023-07-07 10:35 ` [Bug sanitizer/89764] [11/12/13/14 " rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:40 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

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

* [Bug sanitizer/89764] [10/11/12/13 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2022-05-27  9:40 ` [Bug sanitizer/89764] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:37 ` jakub at gcc dot gnu.org
  2023-07-07 10:35 ` [Bug sanitizer/89764] [11/12/13/14 " rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:37 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

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

* [Bug sanitizer/89764] [11/12/13/14 Regression] ubsan diagnostic on generic lambdas decayed to function pointers
       [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2022-06-28 10:37 ` jakub at gcc dot gnu.org
@ 2023-07-07 10:35 ` rguenth at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:35 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.5                        |11.5

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

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

end of thread, other threads:[~2023-07-07 10:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-89764-4@http.gcc.gnu.org/bugzilla/>
2021-05-04 12:01 ` [Bug sanitizer/89764] [8 Regression] ubsan diagnostic on generic lambdas decayed to function pointers rguenth at gcc dot gnu.org
2021-05-14 11:47 ` [Bug sanitizer/89764] [9/10/11/12 " jakub at gcc dot gnu.org
2021-06-01  8:13 ` rguenth at gcc dot gnu.org
2021-12-28 23:18 ` pinskia at gcc dot gnu.org
2022-01-21 13:49 ` rguenth at gcc dot gnu.org
2022-05-27  9:40 ` [Bug sanitizer/89764] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:37 ` jakub at gcc dot gnu.org
2023-07-07 10:35 ` [Bug sanitizer/89764] [11/12/13/14 " rguenth 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).