mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-02 22:28:54 +00:00
Fix uninitialized variable warnings (C26495)
This commit is contained in:
parent
089eab96d7
commit
8802f96b7e
30 changed files with 182 additions and 180 deletions
|
@ -484,12 +484,14 @@ public:
|
|||
m_width = WidthSpecifier::Width64Bit;
|
||||
if (shift == 64)
|
||||
m_shift = 0;
|
||||
m_extend = ExtendSpecifier::UXTX;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_width = WidthSpecifier::Width32Bit;
|
||||
if (shift == 32)
|
||||
m_shift = 0;
|
||||
m_extend = ExtendSpecifier::UXTW;
|
||||
}
|
||||
}
|
||||
ARM64Reg GetReg() const { return m_destReg; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue