Check format strings on 64-bits only because we use %zx to print uptr type,
but %zx expects size_t and on 32-bits size_t is defined as 'unsigned int'
while we define uptr as 'unsigned long' which causes lots of -Wformat warnings.
Revert D108042 which disabled all format string checking because of 32-bit warnings.