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
Fix memory error by reversing the order of two lines in LoadStoreVectorizer.cpp
const auto &VecTo = EQClasses[KeyTo]
const auto &VecFrom = EQClasses[KeyFrom]
The entry for KeyTo may not exist before the request, unlike KeyFrom.
Therefore, the vector of instructions for KeyTo must be requested firs
to avoid invalidation of the reference to the instructions vector for KeyFrom
This commit also slightly aligns the debug printings and adds one more LIT case.
0 commit comments