OSDN Git Service

* expr.h (default_must_pass_in_stack): Move decl outside ifdef.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Jan 2003 07:55:53 +0000 (07:55 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Jan 2003 07:55:53 +0000 (07:55 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61538 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/expr.h

index 78803b7..b359032 100644 (file)
@@ -1,5 +1,9 @@
 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
        * stmt.c (expand_asm_operands): Validize memory operands.
 
index 8db9118..1210372 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