mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
all: fix warnings uninitialize array or variable access
This commit is contained in:
committed by
Henrik Rydgård
parent
0092e266de
commit
f4e52d5db5
@@ -1953,7 +1953,7 @@ static int Count(const bool part[4]) {
|
||||
void ARM64XEmitter::MOVI2R(ARM64Reg Rd, u64 imm, bool optimize)
|
||||
{
|
||||
unsigned int parts = Is64Bit(Rd) ? 4 : 2;
|
||||
bool upload_part[4];
|
||||
bool upload_part[4]{};
|
||||
|
||||
// Always start with a movz! Kills the dependency on the register.
|
||||
bool use_movz = true;
|
||||
|
||||
Reference in New Issue
Block a user