|
@@ -98,7 +98,7 @@ class CallInstruction(Instruction):
|
|
|
def __repr__(self):
|
|
|
return '@%r: CallInstruction(@%r, [%s])' % (
|
|
|
id(self), id(self.target),
|
|
|
- ', '.join(['%s=@%r' % (name, value) for name, value in self.argument_list]))
|
|
|
+ ', '.join(['%s=@%r' % (name, id(value)) for name, value in self.argument_list]))
|
|
|
|
|
|
class ConstantInstruction(Instruction):
|
|
|
"""Represents a 'constant' instruction, which produces a reference
|