[PATCH] D26650: [asan] Don't assert that a target is within 2GB on 32-bit Windows
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 15 10:38:49 PST 2016
rnk added inline comments.
================
Comment at: lib/interception/tests/interception_win_test.cc:220
+ // one that is.
+ MEMORY_BASIC_INFORMATION mbi = {0};
+ while (sizeof(mbi) == VirtualQuery(Base, &mbi, sizeof(mbi))) {
----------------
etienneb wrote:
> nit: coding style is {} instead of {0} ?
Sure, done.
https://reviews.llvm.org/D26650
More information about the llvm-commits
mailing list