mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-24 12:29:49 +08:00
oops - add missing return values
From-SVN: r30416
This commit is contained in:
parent
71152e6da2
commit
aa608fe69c
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user