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
The global variable might be changed by the subroutine. Considering
the following code:
```
int e = arr[idx];
subroutine_changing_idx();
int d = arr[idx];
```
We cannot invoke the CSE and replace `d = arr[idx]` with `d = e` safely.
Fix#112
0 commit comments