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:
Pierre Bourdon 2016-06-27 02:38:10 +02:00 committed by GitHub
commit 6ed001ad42

View file

@ -85,7 +85,7 @@ class x64EmitterTest : public testing::Test
protected:
void SetUp() override
{
memset(&cpu_info, 0xFF, sizeof(cpu_info));
memset(&cpu_info, 0x01, sizeof(cpu_info));
emitter.reset(new X64CodeBlock());
emitter->AllocCodeSpace(4096);