Skip to content

Commit

Permalink
Dont ignore regions
Browse files Browse the repository at this point in the history
  • Loading branch information
yousifpatti committed Aug 13, 2024
1 parent f607fdf commit 5a20e37
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/main/scala/analysis/MemoryRegionAnalysis.scala
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,8 @@ trait MemoryRegionAnalysis(val program: Program,
s
}
case memAssign: MemoryAssign =>
if (ignoreRegions.contains(memAssign.value)) {
s
} else {
val result = eval(memAssign.index, s, cmd)
regionLattice.lub(s, result)
}
val result = eval(memAssign.index, s, cmd)
regionLattice.lub(s, result)
case assign: Assign =>
stackDetection(assign)
var m = s
Expand Down

0 comments on commit 5a20e37

Please sign in to comment.