Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Invalidate assumption cache before outlining. | Aditya Kumar | 2019-10-04 | 1 | -0/+12 |
| | | | | | | | | | | | | | | Subscribers: llvm-commits Tags: #llvm Reviewers: compnerd, vsk, sebpop, fhahn, tejohnson Reviewed by: vsk Differential Revision: https://reviews.llvm.org/D68478 llvm-svn: 373807 | ||||
* | HotColdSplitting: invalidate the AssumptionCache on split | Saleem Abdulrasool | 2019-09-23 | 1 | -0/+38 |
When a cold path is outlined, the value tracking in the assumption cache may be invalidated due to the code motion. We would previously trip an assertion in subsequent passes (but required the passes to happen in a single run as the assumption cache is shared across the passes). Invalidating the cache ensures that we get the correct information when needed with the legacy pass manager as well. llvm-svn: 372667 |