* expr.h (default_must_pass_in_stack): Move decl outside ifdef.

From-SVN: r61538
This commit is contained in:
Richard Henderson 2003-01-20 23:55:53 -08:00 committed by Richard Henderson
parent 5b50aa9d60
commit d8d0f5af81
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-01-20 Richard Henderson <rth@redhat.com>
* expr.h (default_must_pass_in_stack): Move decl outside ifdef.
2003-01-20 Richard Henderson <rth@redhat.com>
PR opt/7507

View File

@ -154,8 +154,8 @@ enum direction {none, upward, downward}; /* Value has this type. */
#endif
/* Nonzero if we do not know how to pass TYPE solely in registers. */
#ifndef MUST_PASS_IN_STACK
extern bool default_must_pass_in_stack PARAMS((enum machine_mode, tree));
#ifndef MUST_PASS_IN_STACK
#define MUST_PASS_IN_STACK(MODE,TYPE) default_must_pass_in_stack(MODE, TYPE)
#endif