1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Clear DbgValues in the end.

llvm-svn: 136503
This commit is contained in:
Devang Patel 2011-07-29 19:49:58 +00:00
parent 02fa079dc3
commit c98d0fe74b

View File

@ -1130,6 +1130,7 @@ bool Reassociate::runOnFunction(Function &F) {
// We are done with the rank map.
RankMap.clear();
ValueRankMap.clear();
DbgValues.clear();
return MadeChange;
}