[LCG] Fix an assert in a on-scope-exit lambda that checked the contents
authorChandler Carruth <chandlerc@gmail.com>
Thu, 10 Aug 2017 03:05:21 +0000 (03:05 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 10 Aug 2017 03:05:21 +0000 (03:05 +0000)
commit9c161e894af3dd7f54dd29218a476bc270864d24
tree16221f33d61563f35849afe9cc7be5abb99f602b
parenta95eae2d4b87e19e3d27aed844f9d6762b55de8a
[LCG] Fix an assert in a on-scope-exit lambda that checked the contents
of the returned value.

Checking the returned value from inside of a scoped exit isn't actually
valid. It happens to work when NRVO fires and the stars align, which
they reliably do with Clang but don't, for example, on MSVC builds.

llvm-svn: 310547
llvm/lib/Analysis/LazyCallGraph.cpp