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:
|
||||
void SetUp() override
|
||||
{
|
||||
memset(&cpu_info, 0xFF, sizeof(cpu_info));
|
||||
memset(&cpu_info, 0x01, sizeof(cpu_info));
|
||||
|
||||
emitter.reset(new X64CodeBlock());
|
||||
emitter->AllocCodeSpace(4096);
|
||||
|
|
Loading…
Reference in New Issue