* expr.h (default_must_pass_in_stack): Move decl outside ifdef.
authorRichard Henderson <rth@redhat.com>
Tue, 21 Jan 2003 07:55:53 +0000 (23:55 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 21 Jan 2003 07:55:53 +0000 (23:55 -0800)
From-SVN: r61538

gcc/ChangeLog
gcc/expr.h

index 78803b74e24e94cdb6d9dcfb210433d2ea8dc1ae..b359032d99ce3063cb6a857fe9c2788f3b82b176 100644 (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
index 8db91189fe6f1c6434e00004afb786820354d8c7..121037227306a391a3f5cd17d86805e894bf16f3 100644 (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