Fix gcc warning with braces around MACRO.

This commit is contained in:
Stephen Anthony 2021-10-23 21:51:13 -02:30
parent 5e3f244cd2
commit 79da2e1d8a
1 changed files with 8 additions and 0 deletions

View File

@ -1900,7 +1900,9 @@ int Thumbulator::execute()
first = false;
}
else
{
INC_S_CYCLES(sp, AccessType::data);
}
sp += 4;
}
}
@ -2352,7 +2354,9 @@ int Thumbulator::execute()
first = false;
}
else
{
INC_S_CYCLES(sp, AccessType::data);
}
sp += 4;
}
}
@ -2423,7 +2427,9 @@ int Thumbulator::execute()
first = false;
}
else
{
INC_S_CYCLES(rd, AccessType::data);
}
rd += 4;
}
}
@ -2587,7 +2593,9 @@ int Thumbulator::execute()
first = false;
}
else
{
INC_S_CYCLES(sp, AccessType::data);
}
sp += 4;
}
}