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
A follow-up on issue #2221. We missed concat for StrengthReduction.
dummy_var = (h.h.p ++ function_with_side_effect(h.h.p))[15:8];
turns into dummy_var = h.h.p;
because the compiler thinks it can remove the right-hand statement.
A follow-up on issue #2221. We missed
concat
for StrengthReduction.dummy_var = (h.h.p ++ function_with_side_effect(h.h.p))[15:8];
turns into
dummy_var = h.h.p;
because the compiler thinks it can remove the right-hand statement.
I attached an augmented test and the corresponding stf file.
2221_concat.p4.txt
2221_concat.stf.txt
The text was updated successfully, but these errors were encountered: