mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
x64EmitterTest: fill cpu_info with 0x01 instead of 0xFF to make gcc happier
This commit is contained in:
parent
64cf74abb4
commit
a910a4309f
@ -85,7 +85,7 @@ class x64EmitterTest : public testing::Test
|
|||||||
protected:
|
protected:
|
||||||
void SetUp() override
|
void SetUp() override
|
||||||
{
|
{
|
||||||
memset(&cpu_info, 0xFF, sizeof(cpu_info));
|
memset(&cpu_info, 0x01, sizeof(cpu_info));
|
||||||
|
|
||||||
emitter.reset(new X64CodeBlock());
|
emitter.reset(new X64CodeBlock());
|
||||||
emitter->AllocCodeSpace(4096);
|
emitter->AllocCodeSpace(4096);
|
||||||
|
Loading…
Reference in New Issue
Block a user