Add extra braces for int128 initializers

This commit is contained in:
Frank Denis 2014-05-27 08:53:10 -07:00
parent 9981651750
commit eca4b52911

View File

@ -9,6 +9,6 @@ const unsigned char M0SWAP[16] = {0x0c, 0x08, 0x04, 0x00, 0x0d, 0x09, 0x05, 0x01
const unsigned char SR[16] = {0x01, 0x02, 0x03, 0x00, 0x06, 0x07, 0x04, 0x05, 0x0b, 0x08, 0x09, 0x0a, 0x0c, 0x0d, 0x0e, 0x0f};
const unsigned char SRM0[16] = {0x0f, 0x0a, 0x05, 0x00, 0x0e, 0x09, 0x04, 0x03, 0x0d, 0x08, 0x07, 0x02, 0x0c, 0x0b, 0x06, 0x01};
const int128 BS0 = {0x5555555555555555ULL, 0x5555555555555555ULL};
const int128 BS1 = {0x3333333333333333ULL, 0x3333333333333333ULL};
const int128 BS2 = {0x0f0f0f0f0f0f0f0fULL, 0x0f0f0f0f0f0f0f0fULL};
const int128 BS0 = {{0x5555555555555555ULL, 0x5555555555555555ULL}};
const int128 BS1 = {{0x3333333333333333ULL, 0x3333333333333333ULL}};
const int128 BS2 = {{0x0f0f0f0f0f0f0f0fULL, 0x0f0f0f0f0f0f0f0fULL}};