1345cc7bd8e2fb7b3c9b3049a6c27d021cdfb702
[bigint-presentation-code.git] / src / bigint_presentation_code / test_register_allocator.py
1 import unittest
2
3 from bigint_presentation_code.compiler_ir import Op
4 from bigint_presentation_code.register_allocator import (
5 AllocationFailed, allocate_registers,
6 try_allocate_registers_without_spilling)
7
8
9 class TestCompilerIR(unittest.TestCase):
10 pass # no tests yet, just testing importing
11
12
13 if __name__ == "__main__":
14 unittest.main()