Fix small bug around null in parser.

This commit is contained in:
cfreksen 2017-10-30 00:57:58 +01:00
parent 397c144bba
commit 4d0d13359b
No known key found for this signature in database
GPG Key ID: EAC13EE101008978
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ class LLVMParser(object):
def p_operand_null(self, p):
'operand : NULL'
p[0] = ll.Null
p[0] = ll.Null()
def p_operand_const(self, p):
'operand : INT'