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 4568796 commit 75b4152Copy full SHA for 75b4152
src/determinestrategy.jl
@@ -566,10 +566,10 @@ function load_elimination_cost_factor!(
566
end
567
568
function loadintostore(ls::LoopSet, op::Operation)
569
- isload(op) || return false
570
- for opp ∈ operations(ls)
571
- isstore(opp) && opp.ref == op.ref && return true
572
- end
+ # isload(op) || return false # leads to bad behavior more than it helps
+ # for opp ∈ operations(ls)
+ # isstore(opp) && opp.ref == op.ref && return true
+ # end
573
false
574
575
function add_constant_offset_load_elmination_cost!(
0 commit comments