Index: Source/wtf/PageAllocator.cpp |
diff --git a/Source/wtf/PageAllocator.cpp b/Source/wtf/PageAllocator.cpp |
index 60a02f80ad6889e369acdc53129fce8affed472c..fda703aec591d619f15f31d7d7f3fb0740bac9a6 100644 |
--- a/Source/wtf/PageAllocator.cpp |
+++ b/Source/wtf/PageAllocator.cpp |
@@ -69,11 +69,8 @@ static bool shouldUseAddressHint() |
// 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) { |
- IsWow64Process(GetCurrentProcess(), &bIsWow64); |
- } |
- return !!bIsWow64; |
+ // TODO(tsepez): presently disabled due to IsWow64Process() compatibility. |
+ return true; |
#else // CPU(32BIT) |
return true; |
#endif // CPU(32BIT) |