mirror of
https://github.com/dschmenk/PLASMA.git
synced 2025-04-05 03:37:43 +00:00
Merge pull request #25 from ZornsLemma/optimise_shl_1
Optimise "CB 1:SHL" to "DUP:ADD" Almost anything that saves bytes is faster, except for MUL/DIV. Thanks!
This commit is contained in:
commit
e59d03984a
@ -1053,6 +1053,13 @@ int crunch_seq(t_opseq **seq, int pass)
|
||||
freeops = 1;
|
||||
break;
|
||||
}
|
||||
if (opnext->code == BINARY_CODE(SHL_TOKEN))
|
||||
{
|
||||
op->code = DUP_CODE;
|
||||
opnext->code = BINARY_CODE(ADD_TOKEN);
|
||||
crunched = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
switch (opnext->code)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user