Skip to content

Commit

Permalink
Base.push! instead of push! in SymbolTable (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
jumerckx authored Jun 3, 2024
1 parent 12e12ae commit eb4aed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IR/SymbolTable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If the symbol table already has a symbol with the same name, renames the symbol
Note that this does not move the operation itself into the block of the symbol table operation, this should be done separately.
Returns the name of the symbol after insertion.
"""
push!(st::SymbolTable, op::Operation) = Attribute(API.mlirSymbolTableInsert(st, op))
Base.push!(st::SymbolTable, op::Operation) = Attribute(API.mlirSymbolTableInsert(st, op))

"""
delete!(symboltable, operation)
Expand Down

0 comments on commit eb4aed0

Please sign in to comment.