| Index: Source/wtf/PageAllocator.cpp
|
| diff --git a/Source/wtf/PageAllocator.cpp b/Source/wtf/PageAllocator.cpp
|
| index 1c38ddfc77201c57dd9864adef9acced8991c249..fda703aec591d619f15f31d7d7f3fb0740bac9a6 100644
|
| --- a/Source/wtf/PageAllocator.cpp
|
| +++ b/Source/wtf/PageAllocator.cpp
|
| @@ -69,15 +69,8 @@
|
| // is running under WOW64, then it has at least 3 GB available (and likely
|
| // 4 GB depending upon the OS version), and we want use the additional
|
| // randomness.
|
| - static BOOL bIsWow64 = -1;
|
| - if (bIsWow64 == -1) {
|
| - BOOL result = IsWow64Process(GetCurrentProcess(), &bIsWow64);
|
| - if (!result) {
|
| - ASSERT_NOT_REACHED();
|
| - bIsWow64 = 0;
|
| - }
|
| - }
|
| - return !!bIsWow64;
|
| + // TODO(tsepez): presently disabled due to IsWow64Process() compatibility.
|
| + return true;
|
| #else // CPU(32BIT)
|
| return true;
|
| #endif // CPU(32BIT)
|
|
|