summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/CodeExtractor/BlockAddressReference.ll
AgeCommit message (Collapse)Author
2023-01-03[CodeExtractor] Convert some tests to opaque pointers (NFC)Nikita Popov
2022-12-07[NFC] Port all CodeExtractor tests to `-passes=` syntaxRoman Lebedev
2020-10-13[LoopExtract][NewPM] Port -loop-extract to NPMArthur Eubanks
-loop-extract-single is just -loop-extract on one loop. -loop-extract depended on -break-crit-edges and -loop-simplify in the legacy PM, but the NPM doesn't allow specifying pass dependencies like that, so manually add those passes to the RUN lines where necessary. Reviewed By: asbirlea Differential Revision: https://reviews.llvm.org/D89016
2019-04-17Revert "Temporarily Revert "Add basic loop fusion pass.""Eric Christopher
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
2019-04-17Temporarily Revert "Add basic loop fusion pass."Eric Christopher
As it's causing some bot failures (and per request from kbarton). This reverts commit r358543/ab70da07286e618016e78247e4a24fcb84077fda. llvm-svn: 358546
2017-06-27[CodeExtractor] Prevent extraction of block involving blockaddressSerge Guelton
BlockAddress are only valid within their function context, which does not interact well with CodeExtractor. Detect this case and prevent it. Differential Revision: https://reviews.llvm.org/D33839 llvm-svn: 306448