Fix missing braces warning

This commit is contained in:
angie 2022-09-09 23:19:45 -04:00
parent ea935b8358
commit baf3ce83ee
3 changed files with 3 additions and 3 deletions

View File

@ -16,4 +16,4 @@ RABBITIZER_DEF_INSTR_ID(cpu, , INVALID, .operands={RAB_OPERAND_cpu_rs, RAB_OPERA
#include "instructions/instr_id/cpu/cpu_cop1_fpu_w.inc"
#include "instructions/instr_id/cpu/cpu_cop1_fpu_l.inc"
RABBITIZER_DEF_INSTR_ID(cpu, , MAX, 0)
RABBITIZER_DEF_INSTR_ID(cpu, , MAX, .operands={0})

View File

@ -23,4 +23,4 @@ RABBITIZER_DEF_INSTR_ID(r5900, , INVALID, .operands={RAB_OPERAND_cpu_rs, RAB
#include "instructions/instr_id/r5900/r5900_cop2_special2.inc"
RABBITIZER_DEF_INSTR_ID(r5900, , MAX, 0)
RABBITIZER_DEF_INSTR_ID(r5900, , MAX, .operands={0})

View File

@ -17,4 +17,4 @@ RABBITIZER_DEF_INSTR_ID(rsp, , INVALID, .operands={RAB_OPERAND_rsp
#include "instructions/instr_id/rsp/rsp_regimm.inc"
#include "instructions/instr_id/rsp/rsp_cop0.inc"
RABBITIZER_DEF_INSTR_ID(rsp, , MAX, 0)
RABBITIZER_DEF_INSTR_ID(rsp, , MAX, .operands={0})