dyncom: Eliminate clang warnings
Gets rid of a whole load of missing brace initialization warnings.
This commit is contained in:
parent
bf5e1d08bc
commit
572c91a024
4 changed files with 404 additions and 406 deletions
|
@ -1093,8 +1093,6 @@ VMOVBRC_INST:
|
|||
if ((inst_base->cond == 0xe) || CondPassed(cpu, inst_base->cond)) {
|
||||
CHECK_VFP_ENABLED;
|
||||
|
||||
vmovbrc_inst *inst_cream = (vmovbrc_inst *)inst_base->component;
|
||||
|
||||
VFP_DEBUG_UNIMPLEMENTED(VMOVBRC);
|
||||
}
|
||||
cpu->Reg[15] += GET_INST_SIZE(cpu);
|
||||
|
@ -1224,8 +1222,6 @@ VMOVBCR_INST:
|
|||
if ((inst_base->cond == 0xe) || CondPassed(cpu, inst_base->cond)) {
|
||||
CHECK_VFP_ENABLED;
|
||||
|
||||
vmovbcr_inst *inst_cream = (vmovbcr_inst *)inst_base->component;
|
||||
|
||||
VFP_DEBUG_UNIMPLEMENTED(VMOVBCR);
|
||||
}
|
||||
cpu->Reg[15] += GET_INST_SIZE(cpu);
|
||||
|
|
|
@ -51,6 +51,8 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#include <cinttypes>
|
||||
|
||||
#include "common/logging/log.h"
|
||||
|
||||
#include "core/arm/skyeye_common/vfp/vfp_helper.h"
|
||||
|
@ -392,7 +394,7 @@ sqrt_invalid:
|
|||
term = (u64)vsd.significand * vsd.significand;
|
||||
rem = ((u64)vsm.significand << 32) - term;
|
||||
|
||||
LOG_DEBUG(Core_ARM11, "term=%016lx rem=%016lx", term, rem);
|
||||
LOG_DEBUG(Core_ARM11, "term=%016" PRIx64 "rem=%016" PRIx64, term, rem);
|
||||
|
||||
while (rem < 0) {
|
||||
vsd.significand -= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue