Fix align_target with a padding of 0 bytes

This commit is contained in:
gbeauche 2003-03-13 09:51:31 +00:00
parent bd29aa7a27
commit a8e76deb69

View File

@ -4972,6 +4972,9 @@ void freescratch(void)
static void align_target(uae_u32 a)
{
if (!a)
return;
if (tune_nop_fillers)
raw_emit_nop_filler(a - (((uae_u32)target) & (a - 1)));
else {