Skip to content

Commit bbe047b

Browse files
authored
Merge branch 'main' into mlir-18
2 parents d1c0491 + c72da79 commit bbe047b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/IR/ExecutionEngine.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
struct ExecutionEngine
1+
mutable struct ExecutionEngine
22
engine::API.MlirExecutionEngine
33

44
function ExecutionEngine(engine)

src/IR/Region.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ insert_before!(region::Region, reference::Block, block::Block) =
7676
Gets the first block in the region.
7777
"""
7878
function first_block(region::Region)
79-
block = mlirRegionGetFirstBlock(region)
79+
block = API.mlirRegionGetFirstBlock(region)
8080
mlirIsNull(block) && return nothing
8181
return Block(block, false)
8282
end

src/IR/SymbolTable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
struct SymbolTable
1+
mutable struct SymbolTable
22
st::API.MlirSymbolTable
33

44
function SymbolTable(st)

0 commit comments

Comments
 (0)