Skip to content

Commit 1d6e1f4

Browse files
committed
fixing aarch64 builds broken by the fast_log2 header import
1 parent a079b64 commit 1d6e1f4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

features/entropy/entropy_histogram.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* SPDX-License-Identifier: BSL-1.0 */
22
#if defined(__x86_64__) || defined(__i386__)
33
#include <immintrin.h>
4-
#include "fast_log2.h"
54
#elif defined(__aarch64__)
65
#include <arm_neon.h>
76
#include <arm_sve.h>
87
#endif
8+
#include "fast_log2.h"
99
#include <stddef.h>
1010
#include <stdint.h>
1111
#include <dynemit/entropy.h>

features/entropy/entropy_u16.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* SPDX-License-Identifier: BSL-1.0 */
22
#if defined(__x86_64__) || defined(__i386__)
33
#include <immintrin.h>
4-
#include "fast_log2.h"
54
#elif defined(__aarch64__)
65
#include <arm_neon.h>
76
#include <arm_sve.h>
87
#endif
8+
#include "fast_log2.h"
99
#include <stddef.h>
1010
#include <stdint.h>
1111
#include <stdlib.h>

features/entropy/entropy_u32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* SPDX-License-Identifier: BSL-1.0 */
22
#if defined(__x86_64__) || defined(__i386__)
33
#include <immintrin.h>
4-
#include "fast_log2.h"
54
#elif defined(__aarch64__)
65
#include <arm_neon.h>
76
#include <arm_sve.h>
87
#endif
8+
#include "fast_log2.h"
99
#include <stddef.h>
1010
#include <stdint.h>
1111
#include <stdlib.h>

0 commit comments

Comments
 (0)