예제 #1
0
 def phi(self, typ, name=""):
     inst = instructions.PhiInstr(self.block, typ, name=name)
     self._insert(inst)
     return inst
예제 #2
0
 def phi(self, typ, name='', flags=()):
     inst = instructions.PhiInstr(self.block, typ, name=name, flags=flags)
     self._insert(inst)
     return inst