Пример #1
0
def sumSideType(ltype):
    return lt.Aggregate((lt.i1, ltype))
Пример #2
0
def closureType(ltypes, cx):
    return lt.Aggregate(ltypes)
Пример #3
0
def rctype(ltype, cx):
    return lt.Aggregate((cx.size_t, ltype))
Пример #4
0
 def llvm(self, cx):
     return lt.Aggregate(p.llvm(cx) for p in self.parms)
Пример #5
0
def closureTypeFull(cltype, cx):
    return lt.Aggregate((closureDestructorType(cx), cx.size_t, cltype))