From: Luke Kenneth Casson Leighton Date: Mon, 1 Jun 2020 00:52:50 +0000 (+0100) Subject: remove unneeded code X-Git-Tag: div_pipeline~702 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7a9b0e2f5e3b3ca889559985274ad3e62722121;p=soc.git remove unneeded code --- diff --git a/src/soc/fu/cr/test/test_pipe_caller.py b/src/soc/fu/cr/test/test_pipe_caller.py index 0575357a..e0d529b2 100644 --- a/src/soc/fu/cr/test/test_pipe_caller.py +++ b/src/soc/fu/cr/test/test_pipe_caller.py @@ -265,13 +265,6 @@ class TestRunner(FHDLTestCase): traces=[]): sim.run() - def check_extra_alu_outputs(self, alu, dec2, sim): - rc = yield dec2.e.rc.data - if rc: - cr_expected = sim.crl[0].get_range().value - cr_actual = yield alu.n.data_o.cr0 - self.assertEqual(cr_expected, cr_actual) - if __name__ == "__main__": unittest.main(exit=False)