comparison 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
comparison
equal deleted inserted replaced
69:60cc36ef5a50 70:35286e8abd03
1
2 class Instruction(Value):
3 pass
4
5 class CallInstruction(Instruction):
6 pass
7
8 class BinaryOperator(Instruction):
9 pass
10
11 class LoadInstruction(Instruction):
12 def __init__(self, ptr, name, insertBefore):
13 self.setName(name)
14