mirror of https://github.com/m-labs/artiq.git
compiler: fix const str/bytes handling (#1990)
This commit is contained in:
parent
1b3fa3429d
commit
b50d30ba5b
|
@ -331,8 +331,8 @@ class LLVMIRGenerator:
|
|||
else:
|
||||
value = const.value
|
||||
|
||||
llptr = self.llstr_of_str(const.value, linkage="private", unnamed_addr=True)
|
||||
lllen = ll.Constant(lli32, len(const.value))
|
||||
llptr = self.llstr_of_str(value, linkage="private", unnamed_addr=True)
|
||||
lllen = ll.Constant(lli32, len(value))
|
||||
return ll.Constant(llty, (llptr, lllen))
|
||||
else:
|
||||
assert False
|
||||
|
|
Loading…
Reference in New Issue