forked from M-Labs/artiq
compiler: fix const str/bytes handling (#1990)
This commit is contained in:
parent
e2178f6c86
commit
defc69d9c3
|
@ -335,8 +335,8 @@ class LLVMIRGenerator:
|
||||||
else:
|
else:
|
||||||
value = const.value
|
value = const.value
|
||||||
|
|
||||||
llptr = self.llstr_of_str(const.value, linkage="private", unnamed_addr=True)
|
llptr = self.llstr_of_str(value, linkage="private", unnamed_addr=True)
|
||||||
lllen = ll.Constant(lli32, len(const.value))
|
lllen = ll.Constant(lli32, len(value))
|
||||||
return ll.Constant(llty, (llptr, lllen))
|
return ll.Constant(llty, (llptr, lllen))
|
||||||
else:
|
else:
|
||||||
assert False
|
assert False
|
||||||
|
|
Loading…
Reference in New Issue