diff options
author | Jim Wilson <wilson@cygnus.com> | 1997-09-10 23:34:58 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-09-10 16:34:58 -0700 |
commit | db87ec0b581eb8e80de0c02486fd97b7d643665b (patch) | |
tree | d57d3bde3083c16a6fbe7d041a1830314597566f /gcc/libgcc2.c | |
parent | dc3fce90205e2da23b404eb215e2807307cc531e (diff) | |
download | gcc-db87ec0b581eb8e80de0c02486fd97b7d643665b.zip gcc-db87ec0b581eb8e80de0c02486fd97b7d643665b.tar.gz gcc-db87ec0b581eb8e80de0c02486fd97b7d643665b.tar.bz2 |
Clean up patches for delta88 nested function support.
* m88k/m88k.c (struct option): Rename to struct options.
* m88k/dolph.h (INITIALIZE_TRAMPOLINE): Delete here.
* m88k/sysv3.h (INITIALIZE_TRAMPOLINE): Delete ifdef and comments.
* libgcc2.c (__enable_execute_stack): Check for __sysV88__ not
__DOLPHIN__ or sysV88.
From-SVN: r15393
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 23a4e5a..0e9252e 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -2827,7 +2827,7 @@ __enable_execute_stack () } #endif /* __convex__ */ -#if defined (__DOLPHIN__) || defined (sysV88) +#ifdef __sysV88__ /* Modified from the convex -code above. */ @@ -2857,7 +2857,7 @@ __enable_execute_stack () errno=save_errno; } -#endif /* __DOLPHIN__ or sysV88 */ +#endif /* __sysV88__ */ #ifdef __pyr__ |