summaryrefslogtreecommitdiff
path: root/gcc/config/xtensa
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@acm.org>2006-06-22 19:41:00 +0000
committerBob Wilson <bwilson@gcc.gnu.org>2006-06-22 19:41:00 +0000
commit03c8b1be8990117c8660af8e2231eaf9d665e3a0 (patch)
treeff20e4181f9273c72e72f91b12db729f1a541bad /gcc/config/xtensa
parentf23d4dca7ede3b9b81585b9db7bbb3e1b538e620 (diff)
downloadgcc-03c8b1be8990117c8660af8e2231eaf9d665e3a0.tar.gz
lib1funcs.asm (MIN_ESA): Delete.
* config/xtensa/lib1funcs.asm (MIN_ESA): Delete. (leaf_entry): Remove use of MIN_ESA. From-SVN: r114903
Diffstat (limited to 'gcc/config/xtensa')
-rw-r--r--gcc/config/xtensa/lib1funcs.asm8
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/config/xtensa/lib1funcs.asm b/gcc/config/xtensa/lib1funcs.asm
index 7d316ede805..2fc1399ec5f 100644
--- a/gcc/config/xtensa/lib1funcs.asm
+++ b/gcc/config/xtensa/lib1funcs.asm
@@ -30,12 +30,6 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "xtensa-config.h"
-# Force each stack frame to contain an "Extra Save Area" (ESA) of at least
-# 16 bytes. This is necessary for non-standard Xtensa configurations that
-# only support a fixed register window size of 8, where even leaf functions
-# (such as these) need the ESA for interrupt handlers.
-#define MIN_ESA 16
-
# Define macros for the ABS and ADDX* instructions to handle cases
# where they are not included in the Xtensa processor configuration.
@@ -83,7 +77,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
.macro leaf_entry reg, size
#if XCHAL_HAVE_WINDOWED && !__XTENSA_CALL0_ABI__
- entry \reg, \size + MIN_ESA
+ entry \reg, \size
#else
/* do nothing */
#endif