[Bug tree-optimization/112690] New: [14 Regression] gcc.dg/Wstringop-overflow-17.c failure
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Nov 23 23:42:53 GMT 2023
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112690
Bug ID: 112690
Summary: [14 Regression] gcc.dg/Wstringop-overflow-17.c failure
Product: gcc
Version: 14.0
Status: UNCONFIRMED
Keywords: testsuite-fail
Severity: normal
Priority: P3
Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: pinskia at gcc dot gnu.org
CC: rguenth at gcc dot gnu.org
Target Milestone: ---
This was introduced with r14-5759-g6bf66276e3e41d .
The difference is:
before:
```
d_21 = &a + 7;
```
after:
```
_12 = (sizetype) &a;
_9 = _12 + 7;
d_21 = (char *) _9;
```
More information about the Gcc-bugs
mailing list