Rename field in ll.Load.
This commit is contained in:
parent
4fca74304a
commit
1dc258d26f
2
ll.py
2
ll.py
|
@ -51,7 +51,7 @@ Block = namedtuple('Block', ['insns', 'terminator'])
|
|||
|
||||
Binop = namedtuple('Binop', ['bop', 'ty', 'left', 'right'])
|
||||
Alloca = namedtuple('Alloca', ['ty'])
|
||||
Load = namedtuple('Load', ['ty', 'oper'])
|
||||
Load = namedtuple('Load', ['ty', 'location'])
|
||||
Store = namedtuple('Store', ['ty', 'value', 'location'])
|
||||
Icmp = namedtuple('Icmp', ['cnd', 'ty', 'left', 'right'])
|
||||
Call = namedtuple('Call', ['return_ty', 'callee', 'arguments'])
|
||||
|
|
Loading…
Reference in New Issue
Block a user