Compiler gymnastics

Part of https://github.com/harfbuzz/harfbuzz/issues/630
This commit is contained in:
Behdad Esfahbod 2018-06-06 15:23:35 -07:00
parent 0a5952e8dd
commit 676b19f0d1
1 changed files with 3 additions and 0 deletions

View File

@ -369,6 +369,7 @@ _hb_popcount (T v)
}
assert (0);
return 0; /* Shut up stupid compiler. */
}
/* Returns the number of bits needed to store number */
@ -442,6 +443,7 @@ _hb_bit_storage (T v)
}
assert (0);
return 0; /* Shut up stupid compiler. */
}
/* Returns the number of zero bits in the least significant side of v */
@ -514,6 +516,7 @@ _hb_ctz (T v)
}
assert (0);
return 0; /* Shut up stupid compiler. */
}
static inline bool