DescriptionSubzero. Fixes valgrind errors.
Valgrind used to report errors about uninitialized variable access in
Subzero, when it was built with -O2. The problem was traced to
size_t Alignment = Var->getAlignment;
Alignment = std::max(MinAlignment, Var->getAlignment())
Apparently, the compiler will not correctly zero-extend
Var->getAlignment(), and thus Alignment's upper 32-bits would be
garbage.
BUG=
R=kschimpf@google.com, stichnot@chromium.org
Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=267f2bf9c3f384bb007c686d165b32959143a247
Patch Set 1 #Patch Set 2 : Make format #
Total comments: 2
Patch Set 3 : Addresses comments. #Messages
Total messages: 7 (2 generated)
|