[PATCH] D26650: [asan] Don't assert that a target is within 2GB on 32-bit Windows
Etienne Bergeron via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 15 07:56:16 PST 2016
etienneb accepted this revision.
etienneb added a comment.
This revision is now accepted and ready to land.
lg, thanks for the fix
================
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))) {
----------------
nit: coding style is {} instead of {0} ?
https://reviews.llvm.org/D26650
More information about the llvm-commits
mailing list