Skip to content

Commit

Permalink
Stupid typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 13, 2024
1 parent d2a174f commit e02be89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class RemoveAtomics : ProcedurePass {
val newLabels =
labels.subList(0, beginIndex) +
labels.subList(beginIndex + 1, endIndex).filter {
it !is FenceLabel || !it.labels.contains("ATOMIC_")
it !is FenceLabel || !it.labels.any { it.contains("ATOMIC_") }
} +
labels.subList(endIndex + 1, labels.size)
builder.removeEdge(xcfaEdge)
Expand Down

0 comments on commit e02be89

Please sign in to comment.