summaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-21 07:55:53 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-21 07:55:53 +0000
commit93be38ba0668e7b25c3ee7e531f586bb786947bb (patch)
tree06b8bbf133ba789fd4a49f8723862eef09de20c6 /gcc/expr.h
parent154ffe7ed1bec29dbee756a03d57046ed0cccfe9 (diff)
downloadgcc-93be38ba0668e7b25c3ee7e531f586bb786947bb.tar.gz
* expr.h (default_must_pass_in_stack): Move decl outside ifdef.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61538 138bc75d-0d04-0410-961f-82ee72b054a4
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 8db91189fe6..12103722730 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