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

View File

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