summary refs log tree commit diff
path: root/ExpBuilder.py
blob: 761140ee8af9087d0b266670a908c85ab54246b2 (plain)
1
2
3
4
5
6
7
8
9
from gen import ANFVisitor
from llvmlite.ir import *


class ExpBuilder(ANFVisitor):
    def __init__(self):
        self.module = Module(name="Program")