Clear DbgValues in the end.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136503 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2011-07-29 19:49:58 +00:00
parent 6f6baf1bdd
commit 6e8bb8a0cb

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;
}