1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Don't enable -fsubroutine-extraction when using -Os or -Of

This commit is contained in:
Karol Stasiak
2019-06-26 19:07:25 +02:00
parent 14d6cf4d5c
commit 261486b3cd
2 changed files with 14 additions and 15 deletions
+2 -2
View File
@@ -212,12 +212,12 @@ Whether identical functions should be merged into one function.
Default: yes.
* `-fsubroutine-extraction`, `-fno-subroutine-extraction`
Whether identical fragments of functions should be extracted into subroutines.
Whether identical fragments of functions should be extracted into subroutines (experimental).
Makes the code smaller. Computationally very expensive.
`.ini` equivalent: `subroutine_extraction`.
Default: no.
* `-Os`, `--size` Optimize for size, sacrificing some speed (experimental).
Also enables `-fsubroutine-extraction`.
* `-Of`, `--fast` Optimize for speed, even if it increases the size a bit (experimental).
Also enables `-finline`.