Skip to content

Commit

Permalink
tests: Fix after changing DDA for Fences
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Oct 24, 2023
1 parent a0084f0 commit a000c49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ir.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,8 +744,8 @@ class Foo(DefFunction, Jump):

scope = Scope(exprs)
assert len(scope.d_all) == 3
assert len(scope.d_flow) == 3
assert len(scope.d_anti) == 0
assert len(scope.d_flow) == 2
assert len(scope.d_anti) == 1
assert any(v.function is f for v in scope.d_flow)
assert any(v.function is mocksym0 for v in scope.d_flow)

Expand Down

0 comments on commit a000c49

Please sign in to comment.