public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/114704] New: Missed optimization : eliminate store if the value is known in all predecessors
@ 2024-04-12 14:32 xxs_chy at outlook dot com
  2024-04-12 22:34 ` [Bug tree-optimization/114704] " pinskia at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: xxs_chy at outlook dot com @ 2024-04-12 14:32 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114704
           Summary: Missed optimization : eliminate store if the value is
                    known in all predecessors
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: xxs_chy at outlook dot com
  Target Milestone: ---

Godbolt link: https://godbolt.org/z/KEeGTM49E

For code like:
```
void src(int *p){
    if(*p == 0)
        goto then;
    else {
        dummy();
        if(*p == 0)
            goto then;
        else
            return;
    }

then:
    *p = 0; // *p is already 0, it's dead now
}

```
In then basic block, *p is known to be 0 in all predecessors, thus the store
"*p = 0" is redundant.

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

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

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-12 14:32 [Bug tree-optimization/114704] New: Missed optimization : eliminate store if the value is known in all predecessors xxs_chy at outlook dot com
2024-04-12 22:34 ` [Bug tree-optimization/114704] " pinskia at gcc dot gnu.org
2024-04-12 22:39 ` pinskia at gcc dot gnu.org
2024-04-12 22:41 ` pinskia at gcc dot gnu.org
2024-04-13 13:39 ` xxs_chy at outlook dot com
2024-04-13 18:20 ` pinskia at gcc dot gnu.org
2024-04-15  7:59 ` 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).