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#"
125
125
#![feature(stdarch_neon_f16)]
126
126
127
127
#[cfg(any(target_arch = "aarch64", target_arch = "arm64ec"))]
128
- use core ::arch::aarch64::*;
128
+ use core_arch ::arch::aarch64::*;
129
129
130
130
#[cfg(target_arch = "arm")]
131
- use core ::arch::arm::*;
131
+ use core_arch ::arch::arm::*;
132
132
"# ;
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ pub fn write_bin_cargo_toml(
37
37
write_cargo_toml_header ( w, "intrinsic-test-programs" ) ?;
38
38
39
39
writeln ! ( w, "[dependencies]" ) ?;
40
+ writeln ! ( w, "core_arch = {{ path = \" ../crates/core_arch\" }}" ) ?;
40
41
41
42
for i in 0 ..module_count {
42
43
writeln ! ( w, "mod_{i} = {{ path = \" mod_{i}/\" }}" ) ?;
You can’t perform that action at this time.
0 commit comments