diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARMCM3/chcore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/ARMCM3/chcore.c b/ports/ARMCM3/chcore.c index 94a734dba..cb95916c3 100644 --- a/ports/ARMCM3/chcore.c +++ b/ports/ARMCM3/chcore.c @@ -70,8 +70,6 @@ void threadstart(void) { "bl chThdExit ");
}
-void *retaddr;
-
/*
* System Timer vector.
*/
@@ -84,6 +82,8 @@ void SysTickVector(void) { chSysIRQExitI();
}
+void *retaddr;
+
/*
* To be invoked at the end of any interrupt handler that can trigger a
* reschedule.
|