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
SimplifyDefUse needs to perform inter-procedural analysis for tables and actions:
control Ing() {
bool b;
bit<32> a;
action cond() {
if (b) // <<< use of b
a = 5;
else
a = 10;
}
apply {
b = true; // <<< incorrectly removed
cond();
}
}
The text was updated successfully, but these errors were encountered:
mihaibudiu
pushed a commit
to mihaibudiu/p4c-clone
that referenced
this issue
Jan 6, 2017
SimplifyDefUse needs to perform inter-procedural analysis for tables and actions:
The text was updated successfully, but these errors were encountered: