diff python/ir/instruction.py @ 155:b28a11c01dbe

Simplified IR classes
author Windel Bouwman
date Sun, 03 Mar 2013 13:20:03 +0100
parents 4e79484a9d47
children 8f3924b6076e
line wrap: on
line diff
--- a/python/ir/instruction.py	Sat Mar 02 10:19:38 2013 +0100
+++ b/python/ir/instruction.py	Sun Mar 03 13:20:03 2013 +0100
@@ -1,10 +1,8 @@
-
-from .value import Value
 
 def Enum(**enums):
    return type('Enum', (), enums)
 
-class Instruction(Value):
+class Instruction:
    """ Base class for all instructions. """
    pass