https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115091
Alexander Monakov changed:
What|Removed |Added
CC||amonakov at gcc dot gnu.org
--- Com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115091
--- Comment #2 from andi at firstfloor dot org ---
On Wed, May 15, 2024 at 06:23:27AM +, rguenth at gcc dot gnu.org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115091
>
> --- Comment #1 from Richard Biener ---
> maybe represent th
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115091
--- Comment #1 from Richard Biener ---
maybe represent this in a more formal way:
node = __builtin_speculate (node + 1, node->next);
and in GIMPLE:
_1 = node + 1;
_2 = node->next;
node = .SPECULATE (_1, _2);
and during RTL expansion
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115091
Andrew Pinski changed:
What|Removed |Added
Severity|normal |enhancement
Component|c++