Summary: | [10 Regression] GCC produces incorrect code with -O1 and higher since r10-2711-g3ed01d5408045d80 | ||
---|---|---|---|
Product: | gcc | Reporter: | Vsevolod Livinskii <vsevolod.livinskiy> |
Component: | tree-optimization | Assignee: | Richard Biener <rguenth> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | babokin, marxin, regehr, rguenth, vsevolod.livinskiy |
Priority: | P2 | Keywords: | wrong-code |
Version: | 11.0 | ||
Target Milestone: | 10.3 | ||
Host: | Target: | ||
Build: | Known to work: | 10.2.1, 9.3.0 | |
Known to fail: | 10.2.0, 11.0 | Last reconfirmed: | 2021-01-12 00:00:00 |
Bug Depends on: | |||
Bug Blocks: | 103035 |
Description
Vsevolod Livinskii
2021-01-12 17:01:39 UTC
Thanks for the report, started with r10-2711-g3ed01d5408045d80. I will have a look. The master branch has been updated by Richard Biener <rguenth@gcc.gnu.org>: https://gcc.gnu.org/g:ffd28c265e6d611983cd27e9332dc799039a3f04 commit r11-6632-gffd28c265e6d611983cd27e9332dc799039a3f04 Author: Richard Biener <rguenther@suse.de> Date: Wed Jan 13 09:43:52 2021 +0100 tree-optimization/98640 - fix bogus sign-extension with VN VN tried to express a sign extension from int to long of a trucated quantity with a plain conversion but that loses the truncation. Since there's no single operand doing truncate plus sign extend (there was a proposed SEXT_EXPR to do that at some point mapping to RTL sign_extract) don't bother to appropriately model this with two ops (which the VN insert machinery doesn't handle and which is unlikely to CSE fully). 2021-01-13 Richard Biener <rguenther@suse.de> PR tree-optimization/98640 * tree-ssa-sccvn.c (visit_nary_op): Do not try to handle plus or minus from a truncated operand to be sign-extended. * gcc.dg/torture/pr98640.c: New testcase. The releases/gcc-10 branch has been updated by Richard Biener <rguenth@gcc.gnu.org>: https://gcc.gnu.org/g:268b54382e5248ee1a5e3f4a0841358e03290d17 commit r10-9407-g268b54382e5248ee1a5e3f4a0841358e03290d17 Author: Richard Biener <rguenther@suse.de> Date: Wed Jan 13 09:43:52 2021 +0100 tree-optimization/98640 - fix bogus sign-extension with VN VN tried to express a sign extension from int to long of a trucated quantity with a plain conversion but that loses the truncation. Since there's no single operand doing truncate plus sign extend (there was a proposed SEXT_EXPR to do that at some point mapping to RTL sign_extract) don't bother to appropriately model this with two ops (which the VN insert machinery doesn't handle and which is unlikely to CSE fully). 2021-01-13 Richard Biener <rguenther@suse.de> PR tree-optimization/98640 * tree-ssa-sccvn.c (visit_nary_op): Do not try to handle plus or minus from a truncated operand to be sign-extended. * gcc.dg/torture/pr98640.c: New testcase. (cherry picked from commit ffd28c265e6d611983cd27e9332dc799039a3f04) Fixed. |