This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new e16c3ca arch: esp32: Fix compile error with xtensa-esp32-elf-gcc 8.2.0
e16c3ca is described below
commit e16c3ca25b532eab520c3b37fc6736a5532fd1a8
Author: Masayuki Ishikawa <[email protected]>
AuthorDate: Wed Mar 4 17:37:17 2020 +0900
arch: esp32: Fix compile error with xtensa-esp32-elf-gcc 8.2.0
---
arch/xtensa/src/esp32/esp32_cpuidlestack.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/xtensa/src/esp32/esp32_cpuidlestack.c
b/arch/xtensa/src/esp32/esp32_cpuidlestack.c
index 40b763a..6385524 100644
--- a/arch/xtensa/src/esp32/esp32_cpuidlestack.c
+++ b/arch/xtensa/src/esp32/esp32_cpuidlestack.c
@@ -43,8 +43,7 @@
/* Address of the CPU0 IDLE thread */
uint32_t g_cpu1_idlestack[CPU1_IDLETHREAD_STACKWORDS]
- __attribute__((aligned(16) section(".noinit")));
-
+ __attribute__((aligned(16), section(".noinit")));
/****************************************************************************
* Public Functions