about summary refs log tree commit diff
path: root/src/test/mir-opt/inline/inline-async.rs
AgeCommit message (Collapse)AuthorLines
2022-11-02Ban dashes in miropt test file namesJakob Degen-18/+0
2020-09-02inliner: Avoid query cycles when optimizing generatorsTomasz Miąsko-0/+18
The HIR Id trick is insufficient to prevent query cycles when optimizing generators, since merely requesting a layout of a generator also computes its `optimized_mir`. Make no attempts to inline functions into generators within the same crate to avoid query cycles.