Skip to content

Commit

Permalink
fix strict lattice order (#44)
Browse files Browse the repository at this point in the history
Pointed out at: 
#43 (comment)
  • Loading branch information
aviatesk authored Aug 17, 2021
1 parent b61ebc1 commit 194a5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EscapeAnalysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function ⊑(x::EscapeLattice, y::EscapeLattice)
end
return false
end
(x::EscapeLattice, y::EscapeLattice) = !(y, x)
(x::EscapeLattice, y::EscapeLattice) = (x, y) && !(y, x)

function (x::EscapeLattice, y::EscapeLattice)
return EscapeLattice(
Expand Down

0 comments on commit 194a5b6

Please sign in to comment.