mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-11 09:40:17 +00:00
Merge pull request #3954 from delroth/x64-emitter-test
x64EmitterTest: fill cpu_info with 0x01 instead of 0xFF to make gcc happier
This commit is contained in:
commit
6ed001ad42
@ -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…
x
Reference in New Issue
Block a user