x64EmitterTest: fill cpu_info with 0x01 instead of 0xFF to make gcc happier

This commit is contained in:
Pierre Bourdon 2016-06-27 01:55:42 +02:00
parent 64cf74abb4
commit a910a4309f
1 changed files with 1 additions and 1 deletions

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);