We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 761e25a commit e27b78fCopy full SHA for e27b78f
base/compiler/ssair/ir.jl
@@ -11,7 +11,6 @@ struct CFG
11
# TODO: make this O(1) instead of O(log(n_blocks))?
12
domtree::DomTree
13
end
14
-copy(c::CFG) = CFG(BasicBlock[copy(b) for b in c.blocks], copy(c.index))
15
16
function CFG(blocks::Vector{BasicBlock}, index::Vector{Int})
17
return CFG(blocks, index, construct_domtree(blocks))
0 commit comments