Fix the sanitizer bootstrap error in r265547.
authorWei Mi <wmi@google.com>
Thu, 7 Apr 2016 05:27:17 +0000 (05:27 +0000)
committerWei Mi <wmi@google.com>
Thu, 7 Apr 2016 05:27:17 +0000 (05:27 +0000)
commit979e9756ecbcba1a1b4743048cb1193fb799bd53
treeb10bd7b62b30d2748eed5264a4aff2c020697dca
parent41474a52e7ddd0a2f2844d06e7811a69479f3c90
Fix the sanitizer bootstrap error in r265547.

The iterators of SmallPtrSet SpillsInSubTreeMap[Child].first may be
invalidated when SpillsInSubTreeMap grows. Rearrange the code to
ensure the grow of SpillsInSubTreeMap only happens before getting
the iterators of the SmallPtrSet.

llvm-svn: 265639
llvm/lib/CodeGen/InlineSpiller.cpp