"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "def97f4f264d2d2b2b64442c1faf962588ab43cb"
[CFLAA] Fix a use-of-invalid-pointer bug.
As shown in the diff, we used to add to CFLAA's cache by doing `Cache[Fn] = buildSetsFrom(Fn)`. `buildSetsFrom(Fn)` may cause `Cache` to reallocate its underlying storage, if this happens and `Cache[Fn]` was evaluated prior to `buildSetsFrom(Fn)`, then we'll store the result to a bad address. Patch by Jia Chen. llvm-svn: 268269
Loading
Please register or sign in to comment