oops - add missing return values

From-SVN: r30416
This commit is contained in:
Nick Clifton 1999-11-05 12:08:09 +00:00 committed by Nick Clifton
parent 71152e6da2
commit aa608fe69c
2 changed files with 6 additions and 2 deletions

View 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

View 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)
{