Replace shifts with enforced byte dropping in special cases #35
Labels
Feature Request
This issue is a request for a particular feature
Minor
This change is a minor addition
Aparently cases of
>> 8
,>> 16
and>>32
aren't being optimised to simply drop the bytes as I was originally expecting.This isn't much of an issue for more powerful processors,
but it's a bit of an issue for AVR chips.
The fix will be to manually enforce the byte dropping.
I will look into the best way to do this.
If all else fails, type punning may be the only option.
The text was updated successfully, but these errors were encountered: