[Bug tree-optimization/110251] [14 Regression] Hang at -O3 on x86_64-linux-gnu

2023-06-14 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110251 --- Comment #2 from Andrew Pinski --- Looks like it is uninitialized variable related. Here is one which shows that: ``` int a, b; char c; int d(int e) { int t = 0; if (e >= 'a') return e; return t; } int f(unsigned short e) { int t2

[Bug tree-optimization/110251] [14 Regression] Hang at -O3 on x86_64-linux-gnu

2023-06-14 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110251 Andrew Pinski changed: What|Removed |Added Keywords||compile-time-hog Summary|Han