File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 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) {
7272#[ inline( always) ]
7373pub unsafe fn __dmb ( ) {
7474 compiler_fence ( Ordering :: SeqCst ) ;
75- asm ! ( "dmb" , options( nomem , nostack, preserves_flags) ) ;
75+ asm ! ( "dmb" , options( nostack, preserves_flags) ) ;
7676 compiler_fence ( Ordering :: SeqCst ) ;
7777}
7878
7979#[ inline( always) ]
8080pub unsafe fn __dsb ( ) {
8181 compiler_fence ( Ordering :: SeqCst ) ;
82- asm ! ( "dsb" , options( nomem , nostack, preserves_flags) ) ;
82+ asm ! ( "dsb" , options( nostack, preserves_flags) ) ;
8383 compiler_fence ( Ordering :: SeqCst ) ;
8484}
8585
8686#[ inline( always) ]
8787pub unsafe fn __isb ( ) {
8888 compiler_fence ( Ordering :: SeqCst ) ;
89- asm ! ( "isb" , options( nomem , nostack, preserves_flags) ) ;
89+ asm ! ( "isb" , options( nostack, preserves_flags) ) ;
9090 compiler_fence ( Ordering :: SeqCst ) ;
9191}
9292
You can’t perform that action at this time.
0 commit comments