File tree 4 files changed +4
-4
lines changed
crates/core_arch/src/wasm32
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#[ cfg( test) ]
2
2
use stdarch_test:: assert_instr;
3
3
4
- unsafe extern "C " {
4
+ unsafe extern "unadjusted " {
5
5
#[ link_name = "llvm.wasm.memory.atomic.wait32" ]
6
6
fn llvm_atomic_wait_i32 ( ptr : * mut i32 , exp : i32 , timeout : i64 ) -> i32 ;
7
7
#[ link_name = "llvm.wasm.memory.atomic.wait64" ]
Original file line number Diff line number Diff line change 1
1
#[ cfg( test) ]
2
2
use stdarch_test:: assert_instr;
3
3
4
- unsafe extern "C " {
4
+ unsafe extern "unadjusted " {
5
5
#[ link_name = "llvm.wasm.memory.grow" ]
6
6
fn llvm_memory_grow ( mem : u32 , pages : usize ) -> usize ;
7
7
#[ link_name = "llvm.wasm.memory.size" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use crate::core_arch::simd;
5
5
use stdarch_test:: assert_instr;
6
6
7
7
#[ allow( improper_ctypes) ]
8
- unsafe extern "C " {
8
+ unsafe extern "unadjusted " {
9
9
#[ link_name = "llvm.wasm.relaxed.swizzle" ]
10
10
fn llvm_relaxed_swizzle ( a : simd:: i8x16 , b : simd:: i8x16 ) -> simd:: i8x16 ;
11
11
#[ link_name = "llvm.wasm.relaxed.trunc.signed" ]
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ conversions! {
73
73
}
74
74
75
75
#[ allow( improper_ctypes) ]
76
- unsafe extern "C " {
76
+ unsafe extern "unadjusted " {
77
77
#[ link_name = "llvm.wasm.swizzle" ]
78
78
fn llvm_swizzle ( a : simd:: i8x16 , b : simd:: i8x16 ) -> simd:: i8x16 ;
79
79
You can’t perform that action at this time.
0 commit comments