aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-01-20 23:55:53 -0800
committerRichard Henderson <rth@gcc.gnu.org>2003-01-20 23:55:53 -0800
commitd8d0f5af818f3579df750e4bfad32e6b96f22b63 (patch)
tree06b8bbf133ba789fd4a49f8723862eef09de20c6 /gcc/expr.h
parent5b50aa9d606c53248c582235e5a9e5ab6cecbbc4 (diff)
downloadgcc-d8d0f5af818f3579df750e4bfad32e6b96f22b63.zip
gcc-d8d0f5af818f3579df750e4bfad32e6b96f22b63.tar.gz
gcc-d8d0f5af818f3579df750e4bfad32e6b96f22b63.tar.bz2
* expr.h (default_must_pass_in_stack): Move decl outside ifdef.
From-SVN: r61538
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index 8db9118..1210372 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -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