uint8x16_t vector1 = ((uint8x16_t){1} > (uint8x16_t){0}) >> 7;
printf("%d\n", vector1[0]); // 1 in clang, 255 in gcc
uint8x16_t vector2 = (uint8x16_t){1} > (uint8x16_t){0};
vector2 = vector2 >> 7;
printf("%d\n", vector2[0]); // 1 in both gcc and clang
🤔
Tofu Golem
in reply to Tofu Golem • • •Tofu Golem
in reply to Tofu Golem • • •IDUCtioN
in reply to Tofu Golem • • •Stuart Celarier
in reply to Tofu Golem • • •tyil
in reply to Tofu Golem • • •Huntn00
in reply to Tofu Golem • • •Organic Shelter
in reply to Tofu Golem • • •Jezza™
in reply to Tofu Golem • • •