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 @@ -243,7 +243,7 @@ __IAR_FT int16_t __REVSH(int16_t val)
243243 * Fixed in EWARM 9.50.i2
244244 */
245245
246- __IAR_FT void __CLREX () {
246+ __IAR_FT void __CLREX (void ) {
247247 __ASM volatile (" CLREX" ::: " memory" );
248248}
249249
@@ -464,12 +464,12 @@ __IAR_FT void __STRT(uint32_t value, volatile uint32_t *addr)
464464#if (defined(__ARM_ARCH_ISA_THUMB) && __ARM_ARCH_ISA_THUMB >= 2)
465465// This is not really fault_irq on Cortex-not-M. However
466466// there seems to be code that assumes this.
467- __IAR_FT void __disable_fault_irq ()
467+ __IAR_FT void __disable_fault_irq (void )
468468 {
469469 __ASM volatile (" CPSID F" ::: " memory" );
470470 }
471471
472- __IAR_FT void __enable_fault_irq ()
472+ __IAR_FT void __enable_fault_irq (void )
473473 {
474474 __ASM volatile (" CPSIE F" ::: " memory" );
475475 }
You can’t perform that action at this time.
0 commit comments