Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 6f037e0

Browse files
Kixironryzhyk
authored andcommitted
Fixed fill_indices() on aarch64 (for real)
1 parent ad48ab8 commit 6f037e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trace/consolidation/fill_indices.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ unsafe fn fill_indices_x86_avx2(original_length: usize, indices: &mut Vec<usize>
197197
indices.set_len(original_length);
198198
}
199199

200-
#[cfg(target_family = "aarch64")]
200+
#[cfg(target_arch = "aarch64")]
201201
#[target_feature(enable = "neon")]
202202
pub unsafe fn fill_indices_aarch64_neon(original_length: usize, indices: &mut Vec<usize>) {
203203
use std::{

0 commit comments

Comments
 (0)