mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 07:16:23 +00:00
inliner: Break inlining cycles Keep track of all instances inlined so far. When examining a new call sites from an inlined body, skip those where callee had been inlined already to avoid potential inlining cycles. Fixes #78573.