forked from M-Labs/artiq
transforms.llvm_ir_generator: skip RPC values for attribute writeback.
This commit is contained in:
parent
89df048efb
commit
21bc285604
|
@ -442,7 +442,7 @@ class LLVMIRGenerator:
|
||||||
print(typ)
|
print(typ)
|
||||||
assert False
|
assert False
|
||||||
|
|
||||||
if not (types.is_function(typ) or types.is_method(typ) or
|
if not (types.is_function(typ) or types.is_method(typ) or types.is_rpc(typ) or
|
||||||
name == "__objectid__"):
|
name == "__objectid__"):
|
||||||
rpctag = b"Os" + self._rpc_tag(typ, error_handler=rpc_tag_error) + b":n\x00"
|
rpctag = b"Os" + self._rpc_tag(typ, error_handler=rpc_tag_error) + b":n\x00"
|
||||||
llrpctag = self.llstr_of_str(rpctag)
|
llrpctag = self.llstr_of_str(rpctag)
|
||||||
|
|
Loading…
Reference in New Issue