oops - add missing return values
authorNick Clifton <nickc@cygnus.com>
Fri, 5 Nov 1999 12:08:09 +0000 (12:08 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Fri, 5 Nov 1999 12:08:09 +0000 (12:08 +0000)
From-SVN: r30416

gcc/ChangeLog
gcc/function.c

index 8be07ea..77bbb56 100644 (file)
@@ -1,3 +1,7 @@
+Fri Nov  5 12:05:52 1999  Nick Clifton  <nickc@cygnus.com>
+
+       * function.c (purge_addressof_1): Add missing return values.
+
 Fri Nov  5 10:07:25 1999  Nick Clifton  <nickc@cygnus.com>
 
        * function.c (is_addressof): New function.  Returns true if
index c9b4e20..aacbdff 100644 (file)
@@ -2896,7 +2896,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
                      z = gen_lowpart (GET_MODE (x), z);
 
                    *loc = z;
-                   return;
+                   return true;
                  }
 
              /* Sometimes we may not be able to find the replacement.  For
@@ -3033,7 +3033,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
   else if (code == ADDRESSOF)
     {
       put_addressof_into_stack (x, ht);
-      return;
+      return true;
     }
   else if (code == SET)
     {