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
In CommandAnalysis::getCommands, we're looping over the command list, and possibly deleting the elements as we go over the list and moving those elements to next_window_cmd_list.
So if the first element is a precharge that was inserted from the previous window in if (!next_window_cmd_list.empty()) { list.insert(list.begin(), next_window_cmd_list.begin(), next_window_cmd_list.end()); next_window_cmd_list.clear(); }
In this case, element 0 gets deleted, so element 1 is at index 0 now, which gets skipped over. If that element is an ACT or RDA or WRA, this leads to an error.
The text was updated successfully, but these errors were encountered:
In CommandAnalysis::getCommands, we're looping over the command list, and possibly deleting the elements as we go over the list and moving those elements to next_window_cmd_list.
So if the first element is a precharge that was inserted from the previous window in
if (!next_window_cmd_list.empty()) { list.insert(list.begin(), next_window_cmd_list.begin(), next_window_cmd_list.end()); next_window_cmd_list.clear(); }
In this case, element 0 gets deleted, so element 1 is at index 0 now, which gets skipped over. If that element is an ACT or RDA or WRA, this leads to an error.
The text was updated successfully, but these errors were encountered: