File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,21 +72,21 @@ pub unsafe fn __delay(cyc: u32) {
72
72
#[ inline( always) ]
73
73
pub unsafe fn __dmb ( ) {
74
74
compiler_fence ( Ordering :: SeqCst ) ;
75
- asm ! ( "dmb" , options( nomem , nostack, preserves_flags) ) ;
75
+ asm ! ( "dmb" , options( nostack, preserves_flags) ) ;
76
76
compiler_fence ( Ordering :: SeqCst ) ;
77
77
}
78
78
79
79
#[ inline( always) ]
80
80
pub unsafe fn __dsb ( ) {
81
81
compiler_fence ( Ordering :: SeqCst ) ;
82
- asm ! ( "dsb" , options( nomem , nostack, preserves_flags) ) ;
82
+ asm ! ( "dsb" , options( nostack, preserves_flags) ) ;
83
83
compiler_fence ( Ordering :: SeqCst ) ;
84
84
}
85
85
86
86
#[ inline( always) ]
87
87
pub unsafe fn __isb ( ) {
88
88
compiler_fence ( Ordering :: SeqCst ) ;
89
- asm ! ( "isb" , options( nomem , nostack, preserves_flags) ) ;
89
+ asm ! ( "isb" , options( nostack, preserves_flags) ) ;
90
90
compiler_fence ( Ordering :: SeqCst ) ;
91
91
}
92
92
You can’t perform that action at this time.
0 commit comments