]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz_hash.h
Stop force-inlining everything marked 'inline'
[wimlib] / include / wimlib / lz_hash.h
index 7416585a979500d9e9259ea2704689bdf2f554e5..f7618152b9b02377936b37d3280bb49f83ecabe8 100644 (file)
@@ -30,7 +30,7 @@
  * next-highest @num_bits bits of the product as the hash value, as those have
  * the most randomness.
  */
  * next-highest @num_bits bits of the product as the hash value, as those have
  * the most randomness.
  */
-static inline u32
+static forceinline u32
 lz_hash(u32 seq, unsigned num_bits)
 {
        return (u32)(seq * 0x1E35A7BD) >> (32 - num_bits);
 lz_hash(u32 seq, unsigned num_bits)
 {
        return (u32)(seq * 0x1E35A7BD) >> (32 - num_bits);