Skip to content

Commit fc9b03e

Browse files
committed
fixed Global repr
1 parent aa67013 commit fc9b03e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x86_ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,5 +208,5 @@ def __init__(self, name):
208208
def __str__(self):
209209
return str(self.name) + "(%rip)"
210210
def __repr__(self):
211-
return 'GlobaleValue(' + repr(self.name) + ')'
211+
return 'Global(' + repr(self.name) + ')'
212212

0 commit comments

Comments
 (0)