(self, insts, expected_insts, consts=None)
| 2423 | ], consts |
| 2424 | |
| 2425 | def check(self, insts, expected_insts, consts=None): |
| 2426 | insts_bb, insts_consts = self.make_bb(insts) |
| 2427 | expected_insts_bb, exp_consts = self.make_bb(expected_insts) |
| 2428 | self.cfg_optimization_test(insts_bb, expected_insts_bb, |
| 2429 | consts=insts_consts, expected_consts=exp_consts) |
| 2430 | |
| 2431 | def test_optimized(self): |
| 2432 | insts = [ |
no test coverage detected