We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a7c2e4 commit f2a6c79Copy full SHA for f2a6c79
zmij.cc
@@ -502,8 +502,8 @@ auto write_significand17(char* buffer, uint64_t value) noexcept -> char* {
502
struct to_string_constants {
503
uint64_t mul_const = 0xabcc77118461cefd;
504
uint64_t hundred_million = 100000000;
505
- int32_t multipliers32[4] = {div10k_sig, neg10k, div100_sig << 12, neg100};
506
- int16_t multipliers16[8] = {0xce0, neg10};
+ int32x4_t multipliers32 = {div10k_sig, neg10k, div100_sig << 12, neg100};
+ int16x8_t multipliers16 = {0xce0, neg10};
507
};
508
509
static const to_string_constants constants;
0 commit comments