Commit f422e9a0 by Michael Meissner Committed by Michael Meissner

Size filler array smaller if STACK_SIZE is defined.

From-SVN: r16582
parent bd2a82a6
Wed Nov 19 14:27:04 1997 Michael Meissner <meissner@cygnus.com>
* execute/950221-1.c (filler): If STACK_SIZE is defined, use that
to size the filler array.
Wed Sep 3 17:29:35 1997 Bob Manson <manson@charmed.cygnus.com> Wed Sep 3 17:29:35 1997 Bob Manson <manson@charmed.cygnus.com>
* execute/ieee/ieee.exp: Check for ieee_multilib_flags target * execute/ieee/ieee.exp: Check for ieee_multilib_flags target
......
...@@ -5,7 +5,11 @@ struct parsefile ...@@ -5,7 +5,11 @@ struct parsefile
}; };
struct parsefile basepf; struct parsefile basepf;
struct parsefile *parsefile = &basepf; struct parsefile *parsefile = &basepf;
#ifdef STACK_SIZE
int filler[STACK_SIZE / (2*sizeof(int))];
#else
int filler[0x3000]; int filler[0x3000];
#endif
int el; int el;
char * char *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment