Skip to content

Commit 9560f4a

Browse files
committed
doc: fix comment
1 parent 450da44 commit 9560f4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/zxbc/zxbc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def main(args=None, emitter=None):
153153

154154
# Join all lines into a single string and ensures an INTRO at end of file
155155
asm_output = backend.emit(backend.MEMORY, optimize=OPTIONS.optimization_level > 0)
156-
asm_output = arch.target.optimizer.optimize(asm_output) + "\n" # invoke the -O3
156+
asm_output = arch.target.optimizer.optimize(asm_output) + "\n" # invoke the peephole optimizer
157157

158158
asm_output = asm_output.split("\n")
159159
for i in range(len(asm_output)):

0 commit comments

Comments
 (0)