spurious-clang-warnings 517 B

12345678910
  1. o Minor bugfixes:
  2. - Silence clang warnings under --enable-expensive-hardening, including:
  3. + implicit truncation of 64 bit values to 32 bit;
  4. + const char assignment to self;
  5. + tautological compare; and
  6. + additional parentheses around equality tests. (gcc uses these to
  7. silence assignment, so clang warns when they're present in an
  8. equality test. But we need to use extra parentheses in macros to
  9. isolate them from other code).
  10. Fixes bug 13577.