arch/xtensa/src/common/xtensa_createstack.c: Fix stack alignement.

The required stack alignement is 16 bytes.

Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche
2020-11-18 21:24:01 +00:00
committed by Alan Carvalho de Assis
parent 56198992e5
commit fc5874ad75
+2 -2
View File
@@ -60,9 +60,9 @@
* Pre-processor Macros
****************************************************************************/
/* XTENSA requires at least a 4-byte stack alignment. */
/* XTENSA requires at least a 16-byte stack alignment. */
#define STACK_ALIGNMENT 4
#define STACK_ALIGNMENT 16
/* Stack alignment macros */