Enable the page fault test on targets that aren't x86_64

This commit is contained in:
Ryan Houdek 2015-11-19 00:51:29 -06:00
parent 59b54a77d3
commit 1a638175d2

View File

@ -12,7 +12,6 @@
// include order is important
#include <gtest/gtest.h> // NOLINT
#if _M_X86_64
enum
{
#ifdef _WIN32
@ -78,4 +77,3 @@ TEST(PageFault, PageFault)
printf("HandleFault->end %llu ns\n", AS_NS(end - pfjit.m_post_unprotect_time));
printf("total %llu ns\n", AS_NS(end - start));
}
#endif