Size filler array smaller if STACK_SIZE is defined.
From-SVN: r16582
This commit is contained in:
parent
bd2a82a625
commit
f422e9a0f6
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* execute/ieee/ieee.exp: Check for ieee_multilib_flags target
|
||||
|
@ -5,7 +5,11 @@ struct parsefile
|
||||
};
|
||||
struct parsefile basepf;
|
||||
struct parsefile *parsefile = &basepf;
|
||||
#ifdef STACK_SIZE
|
||||
int filler[STACK_SIZE / (2*sizeof(int))];
|
||||
#else
|
||||
int filler[0x3000];
|
||||
#endif
|
||||
int el;
|
||||
|
||||
char *
|
||||
|
Loading…
Reference in New Issue
Block a user