aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@gcc.gnu.org>2003-05-31 20:45:31 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-05-31 20:45:31 +0200
commit0d569849e6a8c783c2e2331417e85c3a40a3b980 (patch)
treee51a63762d9808d04eaa7cef419df116b60f75da /gcc/function.c
parentc79af3fafd7f53e110ae9286f221032cd11a1ac6 (diff)
downloadgcc-0d569849e6a8c783c2e2331417e85c3a40a3b980.zip
gcc-0d569849e6a8c783c2e2331417e85c3a40a3b980.tar.gz
gcc-0d569849e6a8c783c2e2331417e85c3a40a3b980.tar.bz2
function.c (trampoline_address): Remove ALLOCATE_TRAMPOLINE usage.
* function.c (trampoline_address): Remove ALLOCATE_TRAMPOLINE usage. * doc/tm.texi (Trampolines): Remove ALLOCATE_TRAMPOLINE. * config/d30v/d30v.h: Remove traces of ALLOCATE_TRAMPOLINE. * system.h: Poison ALLOCATE_TRAMPOLINE. * doc/tm.texi (Misc): Remove HANDLE_PRAGMA. * system.h: Poison HANDLE_PRAGMA. In f/ * lex.c (ffelex_hash_): Remove HANDLE_PRAGMA and HANDLE_GENERIC_PRAGMA dependend code, remove #if 0 code. (pragma_getc): Removed. (pragma_ungetc): Removed. From-SVN: r67274
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 64d045b..c6d485d 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -5844,17 +5844,12 @@ trampoline_address (function)
/* Allocate run-time space for this trampoline
(usually in the defining function's stack frame). */
-#ifdef ALLOCATE_TRAMPOLINE
- tramp = ALLOCATE_TRAMPOLINE (fp);
-#else
/* If rounding needed, allocate extra space
to ensure we have TRAMPOLINE_SIZE bytes left after rounding up. */
#define TRAMPOLINE_REAL_SIZE \
(TRAMPOLINE_SIZE + (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT) - 1)
tramp = assign_stack_local_1 (BLKmode, TRAMPOLINE_REAL_SIZE, 0,
fp ? fp : cfun);
-#endif
-
/* Record the trampoline for reuse and note it for later initialization
by expand_function_end. */
if (fp != 0)