Mercurial > lcfOS
view python/libs/compiler/core/instruction.py @ 70:35286e8abd03
Added some llvm classes
author | windel |
---|---|
date | Mon, 29 Oct 2012 20:24:29 +0100 |
parents | |
children | 5351594349b0 |
line wrap: on
line source
class Instruction(Value): pass class CallInstruction(Instruction): pass class BinaryOperator(Instruction): pass class LoadInstruction(Instruction): def __init__(self, ptr, name, insertBefore): self.setName(name)