Skip to content

Commit

Permalink
Merge branch 'main' into mlir-18
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing authored Jul 21, 2024
2 parents d1c0491 + c72da79 commit bbe047b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/IR/ExecutionEngine.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ExecutionEngine
mutable struct ExecutionEngine
engine::API.MlirExecutionEngine

function ExecutionEngine(engine)
Expand Down
2 changes: 1 addition & 1 deletion src/IR/Region.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ insert_before!(region::Region, reference::Block, block::Block) =
Gets the first block in the region.
"""
function first_block(region::Region)
block = mlirRegionGetFirstBlock(region)
block = API.mlirRegionGetFirstBlock(region)
mlirIsNull(block) && return nothing
return Block(block, false)
end
Expand Down
2 changes: 1 addition & 1 deletion src/IR/SymbolTable.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct SymbolTable
mutable struct SymbolTable
st::API.MlirSymbolTable

function SymbolTable(st)
Expand Down

0 comments on commit bbe047b

Please sign in to comment.