We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 450da44 commit 9560f4aCopy full SHA for 9560f4a
1 file changed
src/zxbc/zxbc.py
@@ -153,7 +153,7 @@ def main(args=None, emitter=None):
153
154
# Join all lines into a single string and ensures an INTRO at end of file
155
asm_output = backend.emit(backend.MEMORY, optimize=OPTIONS.optimization_level > 0)
156
- asm_output = arch.target.optimizer.optimize(asm_output) + "\n" # invoke the -O3
+ asm_output = arch.target.optimizer.optimize(asm_output) + "\n" # invoke the peephole optimizer
157
158
asm_output = asm_output.split("\n")
159
for i in range(len(asm_output)):
0 commit comments