gmqcc
gmqcc copied to clipboard
parameter omission optimization
If two functions in a row are called where (1) one of the parameters is the
same, and (2) the first function doesn't overwrite the OFS_PARAM
globals,
then it is not actually necessary to copy the parameter a second time.
could add this as: -Oparameter-omission
This can probably use the same conditions on when to trigger as -Otailcalls would.