Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inliner: Break inlining cycles #78580

Merged
merged 2 commits into from
Nov 10, 2020
Merged

inliner: Break inlining cycles #78580

merged 2 commits into from
Nov 10, 2020

Commits on Nov 9, 2020

  1. inliner: Make inline_call infallible

    The inliner does not support inlining of divering calls. Reject them
    early on and turn `inline_call` into an infallible operation.
    tmiasko committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    b7f16c5 View commit details
    Browse the repository at this point in the history
  2. inliner: Break inlining cycles

    When examining candidates for inlining, reject those that are determined
    to be recursive either because of self-recursive calls or calls to any
    instances already inlined.
    tmiasko committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    dc4d74d View commit details
    Browse the repository at this point in the history