1
0
Mirror von https://github.com/stevenrobertson/cuburn.git synchronisiert 2025-07-02 06:16:53 -04:00

More readable memory allocations

Dieser Commit ist enthalten in:
Steven Robertson
2010-09-12 01:13:22 -04:00
Ursprung 802ca1d585
Commit e2b1c161cf

Datei anzeigen

@ -468,7 +468,7 @@ class _MemFactory(_CallChain):
array = []
if init:
array += [' = ', init]
self.block.code(op=['.%s.%s ' % (type[0], type[1]), name, array])
self.block.code(op='.%s.%s ' % (type[0], type[1]), vars=[name, array])
self.block.inject(name, memobj)
# TODO: move vec, addr here, or make this public