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

Potential lowering bug on 1.12 #55888

Open
Drvi opened this issue Sep 26, 2024 · 1 comment
Open

Potential lowering bug on 1.12 #55888

Drvi opened this issue Sep 26, 2024 · 1 comment

Comments

@Drvi
Copy link
Contributor

Drvi commented Sep 26, 2024

As spotted by @NHDaly on RelationalAI slack; I'm making this issue so it doesn't get lost.

function assign_node_ids(node, starting_id::Int)

    ii = starting_id

    function _traverse::BackIRType)
        new_φ = _copy_and_assign_id(φ, ii)
        if new_φ !== φ
            ii += 1
        end
        return new_φ
    end

    _traverse(n) = n

    return (bottomup(_traverse)(node), ii)
end

Which gave

        UndefVarError: `ii` not defined in local scope
        Suggestion: check for an assignment to a local variable that shadows a global of the same name.

pointing to the first line in the closure:

        new_φ = _copy_and_assign_id(φ, ii)

CC: @gbaraldi

@NHDaly
Copy link
Member

NHDaly commented Oct 5, 2024

Thanks Tomas. @gbaraldi you have access to our codebase and this should be easy to reproduce if you want to! We can even walk you through it again on zoom if you want

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants