mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-08-15 09:27:27 +00:00
ppcdisasm: fix Clang errors and warnings.
This commit is contained in:
committed by
dingusdev
parent
ad0659a702
commit
a934ed5bde
@@ -842,7 +842,7 @@ void opc_group31(PPCDisasmContext* ctx)
|
||||
return;
|
||||
break;
|
||||
}
|
||||
else if ((index == 18)) {
|
||||
else if (index == 18) {
|
||||
ctx->instr_str = my_sprintf("%-8s", opcode);
|
||||
return;
|
||||
}
|
||||
@@ -1164,7 +1164,7 @@ void opc_group63(PPCDisasmContext* ctx)
|
||||
strcpy(opcode, "fsel");
|
||||
|
||||
if (rc_set)
|
||||
strcat_s(opcode, ".");
|
||||
strcat(opcode, ".");
|
||||
|
||||
if ((rc != 0) | (ra != 0))
|
||||
opc_illegal(ctx);
|
||||
|
Reference in New Issue
Block a user