aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/common/ports/ARMCMx/compilers/GCC/crt0.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/common/ports/ARMCMx/compilers/GCC/crt0.c b/os/common/ports/ARMCMx/compilers/GCC/crt0.c
index 06c41a2d0..f115a0179 100644
--- a/os/common/ports/ARMCMx/compilers/GCC/crt0.c
+++ b/os/common/ports/ARMCMx/compilers/GCC/crt0.c
@@ -51,11 +51,11 @@ typedef funcp_t * funcpp_t;
* Area fill code, it is a macro because here functions cannot be called
* until stacks are initialized.
*/
-static void fill32(void *start, void *end, uint32_t filler) {
- uint32_t *p1 = start;
- uint32_t *p2 = end;
- while (p1 < p2)
- *p1++ = filler;
+#define fill32(start, end, filler) { \
+ uint32_t *p1 = (start); \
+ uint32_t *p2 = (end); \
+ while (p1 < p2) \
+ *p1++ = (filler); \
}
/*===========================================================================*/
@@ -245,7 +245,7 @@ void __late_init(void) {}
* @note This function is a weak symbol.
*/
#if !defined(__DOXYGEN__)
-__attribute__((weak, naked))
+__attribute__((noreturn, weak))
#endif
void _default_exit(void) {
while (1)