ppcmacros: Remove semicolon from one line macros.

This commit is contained in:
joevt 2024-12-09 22:13:07 -08:00 committed by dingusdev
parent 49b8c4c39f
commit 1da7cb1c2f

View File

@ -138,13 +138,13 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
uint32_t ppc_result_b = ppc_state.gpr[reg_b];
#define ppc_store_iresult_reg(reg, ppc_result)\
ppc_state.gpr[reg] = ppc_result;
ppc_state.gpr[reg] = ppc_result
#define ppc_store_fpresult_int(reg, ppc_result64_d)\
ppc_state.fpr[(reg)].int64_r = ppc_result64_d;
ppc_state.fpr[(reg)].int64_r = ppc_result64_d
#define ppc_store_fpresult_flt(reg, ppc_dblresult64_d)\
ppc_state.fpr[(reg)].dbl64_r = ppc_dblresult64_d;
ppc_state.fpr[(reg)].dbl64_r = ppc_dblresult64_d
#define ppc_grab_regsfpdb(opcode) \
int reg_d = (opcode >> 21) & 31; \