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

Optimize ReplaceAliasByActualDefinitionPass #18265

Merged
merged 1 commit into from Mar 31, 2016
Merged

Optimize ReplaceAliasByActualDefinitionPass #18265

merged 1 commit into from Mar 31, 2016

Commits on Mar 31, 2016

  1. Optimize ReplaceAliasByActualDefinitionPass

    Previous implementation passed over every alias and every definition, for every
    alias (n*(n+m) runtime). New implementation passes once over all aliases and
    once over all definitions (n+m).
    
    Also removing needless "restart" logic --- it has no real effect in either case.
    ajb-in committed Mar 31, 2016
    Copy the full SHA
    ab8dc0c View commit details
    Browse the repository at this point in the history