You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This simple case is not handled by constant folding. It creates a Phi instruction that returns 1 on both branches function(x) { y <- 0; if (x) { y <- 1; } else { y <- 1; }; y }
The text was updated successfully, but these errors were encountered:
skrynski
added
the
pir
to be solved in the compiler, the PIR, the optimizer (/compiler)
label
Apr 3, 2024
skrynski
changed the title
Simple case not handle by constantfolding
Simple case not handles by constantfolding
Jul 31, 2024
This simple case is not handled by constant folding. It creates a Phi instruction that returns 1 on both branches
function(x) { y <- 0; if (x) { y <- 1; } else { y <- 1; }; y }
The text was updated successfully, but these errors were encountered: