From a000c49d21c601183c6b15235ac13b1b2e79140b Mon Sep 17 00:00:00 2001 From: Fabio Luporini Date: Tue, 24 Oct 2023 16:09:49 +0000 Subject: [PATCH] tests: Fix after changing DDA for Fences --- tests/test_ir.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ir.py b/tests/test_ir.py index f64ac08ae8..5bef5fb8bd 100644 --- a/tests/test_ir.py +++ b/tests/test_ir.py @@ -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)