Skip to content

Commit

Permalink
fix non-optimized compile
Browse files Browse the repository at this point in the history
  • Loading branch information
austindonisan committed Feb 23, 2024
1 parent 88974a1 commit b0c02bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1brc.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ void prep_workers(worker_t *workers, int numWorkers, bool warmup, int fd, struct
}


inline bool long_city_equal(LongCity *a, LongCity *b) {
__attribute__((always_inline)) inline bool long_city_equal(LongCity *a, LongCity *b) {
__m256i xor0 = _mm256_xor_si256(a->regs[0], b->regs[0]);
__m256i xor1 = _mm256_xor_si256(a->regs[1], b->regs[1]);
__m256i xor2 = _mm256_xor_si256(a->regs[2], b->regs[2]);
Expand Down

0 comments on commit b0c02bb

Please sign in to comment.