Commit c82c375e authored by Sergei Golubchik's avatar Sergei Golubchik

compilation failure on power8

fix a bad merge
parent 200430ee
...@@ -447,12 +447,12 @@ static bool ut_crc32_slice8_table_initialized = false; ...@@ -447,12 +447,12 @@ static bool ut_crc32_slice8_table_initialized = false;
/********************************************************************//** /********************************************************************//**
Initializes the table that is used to generate the CRC32 if the CPU does Initializes the table that is used to generate the CRC32 if the CPU does
not have support for it. */ not have support for it. */
#ifndef HAVE_CRC32_VPMSUM
static static
void void
ut_crc32_slice8_table_init() ut_crc32_slice8_table_init()
/*========================*/ /*========================*/
{ {
#ifndef HAVE_CRC32_VPMSUM
/* bit-reversed poly 0x1EDC6F41 (from SSE42 crc32 instruction) */ /* bit-reversed poly 0x1EDC6F41 (from SSE42 crc32 instruction) */
static const uint32_t poly = 0x82f63b78; static const uint32_t poly = 0x82f63b78;
uint32_t n; uint32_t n;
...@@ -476,8 +476,8 @@ ut_crc32_slice8_table_init() ...@@ -476,8 +476,8 @@ ut_crc32_slice8_table_init()
} }
ut_crc32_slice8_table_initialized = true; ut_crc32_slice8_table_initialized = true;
}
#endif #endif
}
/** Calculate CRC32 over 8-bit data using a software implementation. /** Calculate CRC32 over 8-bit data using a software implementation.
@param[in,out] crc crc32 checksum so far when this function is called, @param[in,out] crc crc32 checksum so far when this function is called,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment