public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/113878] New: missed optimization with sanitizer and signed integer overflow
@ 2024-02-11 16:46 muecker at gwdg dot de
  2024-02-11 16:55 ` [Bug sanitizer/113878] " pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: muecker at gwdg dot de @ 2024-02-11 16:46 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113878
           Summary: missed optimization with sanitizer and signed integer
                    overflow
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: muecker at gwdg dot de
  Target Milestone: ---

It would be nice if the following example could be optimized better with the
sanitizer. Without sanitizer the function is optimized to return 1. With
sanitizer I would expect it to only add the test for the underflow condition,
but it then fails to optimize well.

int test(int x)
{
    if (x > 100)
        return 1;
    x -= 10;
    if (x > 100)
        return 2;
    return 1;
}

https://godbolt.org/z/j4K96v7jn

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

end of thread, other threads:[~2024-02-12  9:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-11 16:46 [Bug c/113878] New: missed optimization with sanitizer and signed integer overflow muecker at gwdg dot de
2024-02-11 16:55 ` [Bug sanitizer/113878] " pinskia at gcc dot gnu.org
2024-02-11 17:43 ` uecker at gcc dot gnu.org
2024-02-11 17:54 ` jakub at gcc dot gnu.org
2024-02-11 18:41 ` uecker at gcc dot gnu.org
2024-02-11 18:46 ` jakub at gcc dot gnu.org
2024-02-11 19:16 ` uecker at gcc dot gnu.org
2024-02-11 19:28 ` jakub at gcc dot gnu.org
2024-02-11 20:07 ` uecker at gcc dot gnu.org
2024-02-12  9:00 ` 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).