File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
crates/intrinsic-test/src Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ pub const AARCH_CONFIGURATIONS: &str = r#"
125125#![feature(stdarch_neon_f16)]
126126
127127#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec"))]
128- use core ::arch::aarch64::*;
128+ use core_arch ::arch::aarch64::*;
129129
130130#[cfg(target_arch = "arm")]
131- use core ::arch::arm::*;
131+ use core_arch ::arch::arm::*;
132132"# ;
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ pub fn write_bin_cargo_toml(
3737 write_cargo_toml_header ( w, "intrinsic-test-programs" ) ?;
3838
3939 writeln ! ( w, "[dependencies]" ) ?;
40+ writeln ! ( w, "core_arch = {{ path = \" ../crates/core_arch\" }}" ) ?;
4041
4142 for i in 0 ..module_count {
4243 writeln ! ( w, "mod_{i} = {{ path = \" mod_{i}/\" }}" ) ?;
You can’t perform that action at this time.
0 commit comments