From eb4aed0715c309d0ee1b625c137dda72b1cac2fb Mon Sep 17 00:00:00 2001 From: jumerckx <31353884+jumerckx@users.noreply.github.com> Date: Mon, 3 Jun 2024 09:16:34 +0200 Subject: [PATCH] `Base.push!` instead of `push!` in SymbolTable (#73) --- src/IR/SymbolTable.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IR/SymbolTable.jl b/src/IR/SymbolTable.jl index 3aaa70c4..4bda62c5 100644 --- a/src/IR/SymbolTable.jl +++ b/src/IR/SymbolTable.jl @@ -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)