Skip to content

Commit eb4aed0

Browse files
authored
Base.push! instead of push! in SymbolTable (#73)
1 parent 12e12ae commit eb4aed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/IR/SymbolTable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If the symbol table already has a symbol with the same name, renames the symbol
3737
Note that this does not move the operation itself into the block of the symbol table operation, this should be done separately.
3838
Returns the name of the symbol after insertion.
3939
"""
40-
push!(st::SymbolTable, op::Operation) = Attribute(API.mlirSymbolTableInsert(st, op))
40+
Base.push!(st::SymbolTable, op::Operation) = Attribute(API.mlirSymbolTableInsert(st, op))
4141

4242
"""
4343
delete!(symboltable, operation)

0 commit comments

Comments
 (0)